mruby-test should be opt-in

This commit is contained in:
Zachary Scott
2015-09-01 20:54:27 -04:00
parent 133d57cb0d
commit 80598f40bf
2 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -4,6 +4,6 @@ MRuby::GemBox.new do |conf|
Dir.glob("#{root}/mrbgems/mruby-*/mrbgem.rake") do |x|
g = File.basename File.dirname x
conf.gem :core => g unless g =~ /^mruby-(print|sprintf|bin-debugger)$/
conf.gem :core => g unless g =~ /^mruby-(print|sprintf|bin-debugger|test)$/
end
end
+10
View File
@@ -38,3 +38,13 @@ MRuby::Build.new('cxx_abi') do |conf|
build_mrbc_exec
end
MRuby::Build.new('test') do |conf|
toolchain :gcc
enable_debug
conf.enable_bintest
conf.gembox 'full-core'
conf.gem :core => "mruby-test"
end