summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-09-03 14:34:48 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-09-03 14:34:48 +0900
commit7967c76e1473a72bc91a436a16df7404dcd0caf2 (patch)
tree63a6808da682f423c0d501b4e3c3ce02c2c38d39 /Rakefile
parent402890d5716608261636c13bd3bb4e4c3f7b4e7f (diff)
parentbacb8268682e8d931a00e7894ed7904bc789d8c4 (diff)
downloadmruby-7967c76e1473a72bc91a436a16df7404dcd0caf2.tar.gz
mruby-7967c76e1473a72bc91a436a16df7404dcd0caf2.zip
Merge pull request #2940 from zzak/build_mrbtest
Add build_mrbtest after config block is evaluated
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 574c1365a..8a8912af5 100644
--- a/Rakefile
+++ b/Rakefile
@@ -116,9 +116,7 @@ end
desc "run all mruby tests"
task :test => ["all"] do
MRuby.each_target do
- if gems.find { |v| v.name == 'mruby-test' }
- run_test unless build_mrbtest_lib_only?
- end
+ run_test if test_enabled?
end
end