rename tests to obsolete

This commit is contained in:
hathach
2019-06-06 21:33:55 +07:00
parent dcfaec9efc
commit 481909e704
202 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
require 'rake'
ERR_MSG = <<EOF
I expected to see a project.yml file in the current directoy. Please create one
by hand or by using the 'ceedling' shell command.
EOF
def ceedling_dir
File.join(
File.dirname(__FILE__),
'..')
end
def builtin_ceedling_plugins_path
File.join(
ceedling_dir,
'plugins')
end
ceeling_lib_rakefile = File.join( ceedling_dir,
'lib',
'rakefile.rb')
if File.exists? "./project.yml"
load ceeling_lib_rakefile
else
$stderr.puts ERR_MSG
end