summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-01-18 16:17:58 +0900
committerGitHub <[email protected]>2019-01-18 16:17:58 +0900
commitcb1946f26c7113b00fe6803683a417a390c343c1 (patch)
treeb3bb8eb84a31ea4d287590be61af5f1aa4d50440 /mrbgems
parent3d32be6f3edefa335b1c93cccfc21dde1f6e1e77 (diff)
parent366a14f297a6b31301b8e01f5ef21ad8fe184977 (diff)
downloadmruby-cb1946f26c7113b00fe6803683a417a390c343c1.tar.gz
mruby-cb1946f26c7113b00fe6803683a417a390c343c1.zip
Merge pull request #4233 from shuujii/remove-special-treatments-for-without-float-in-build-scripts
Remove special treatments for `MRB_WITHOUT_FLOAT` in build scripts
Diffstat (limited to 'mrbgems')
-rw-r--r--mrbgems/mruby-test/mrbgem.rake4
1 files changed, 0 insertions, 4 deletions
diff --git a/mrbgems/mruby-test/mrbgem.rake b/mrbgems/mruby-test/mrbgem.rake
index 6f94da92d..61bdf9ced 100644
--- a/mrbgems/mruby-test/mrbgem.rake
+++ b/mrbgems/mruby-test/mrbgem.rake
@@ -7,10 +7,6 @@ MRuby::Gem::Specification.new('mruby-test') do |spec|
spec.add_dependency('mruby-compiler', :core => 'mruby-compiler')
spec.test_rbfiles = Dir.glob("#{MRUBY_ROOT}/test/t/*.rb")
- if build.cc.defines.flatten.include?("MRB_WITHOUT_FLOAT")
- spec.test_rbfiles.delete("#{MRUBY_ROOT}/test/t/float.rb")
- end
-
clib = "#{build_dir}/mrbtest.c"
mlib = clib.ext(exts.object)