diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-04-19 10:41:57 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-04-19 10:41:57 +0000 |
commit | d6674f8f82f8d54e1f117c1a22268c050d3deb03 (patch) | |
tree | 6ec9bff024a95d0700934e84a0f0de19330219c3 /test | |
parent | 3f927dec87b53f733a2713d4c5351df0d88c774d (diff) | |
download | ruby-d6674f8f82f8d54e1f117c1a22268c050d3deb03.tar.gz |
Add --disable-gems for tests which doesn't use rubygems
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r-- | test/ruby/test_exception.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb index 18b0d6f725..a44a52e928 100644 --- a/test/ruby/test_exception.rb +++ b/test/ruby/test_exception.rb @@ -276,7 +276,7 @@ class TestException < Test::Unit::TestCase end def test_thread_signal_location - _, stderr, _ = EnvUtil.invoke_ruby("-d", <<-RUBY, false, true) + _, stderr, _ = EnvUtil.invoke_ruby("--disable-gems -d", <<-RUBY, false, true) Thread.start do begin Process.kill(:INT, $$) |