Unverified Commit bc21278a authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5331 from shuujii/explicit-top-level-task-to-clarify-in-tasks-test.rake

Explicit top level task to clarify in `tasks/test.rake`
parents 530afca2 3cf0e85e
...@@ -10,7 +10,7 @@ namespace :test do |test_ns| ...@@ -10,7 +10,7 @@ namespace :test do |test_ns|
end end
desc "build and run command binaries tests" desc "build and run command binaries tests"
task :bin => :all do task :bin => "rake:all" do
test_ns["run:bin"].invoke test_ns["run:bin"].invoke
end end
...@@ -19,7 +19,7 @@ namespace :test do |test_ns| ...@@ -19,7 +19,7 @@ namespace :test do |test_ns|
namespace :build do |test_build_ns| namespace :build do |test_build_ns|
desc "build library tests" desc "build library tests"
task :lib => :all do task :lib => "rake:all" do
MRuby.each_target{|build| build.gem(core: 'mruby-test')} MRuby.each_target{|build| build.gem(core: 'mruby-test')}
test = test_build_ns["lib_without_loading_gem"] test = test_build_ns["lib_without_loading_gem"]
test.invoke if test test.invoke if test
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment