diff options
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_require.rb | 6 | ||||
| -rw-r--r-- | test/ruby/test_rubyoptions.rb | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/test/ruby/test_require.rb b/test/ruby/test_require.rb index f6e75a8eaf..cb17b915c2 100644 --- a/test/ruby/test_require.rb +++ b/test/ruby/test_require.rb @@ -26,6 +26,7 @@ class TestRequire < Test::Unit::TestCase p :ok end INPUT + t.close(true) end def test_require_too_long_filename @@ -101,6 +102,7 @@ class TestRequire < Test::Unit::TestCase ensure env_rubypath ? ENV["RUBYPATH"] = env_rubypath : ENV.delete("RUBYPATH") env_home ? ENV["HOME"] = env_home : ENV.delete("HOME") + t.close(true) end def test_require_with_unc @@ -258,6 +260,7 @@ class TestRequire < Test::Unit::TestCase INPUT assert_raise(ArgumentError) { at_exit } + t.close(true) end def test_load2 # [ruby-core:25039] @@ -271,6 +274,7 @@ class TestRequire < Test::Unit::TestCase assert_in_out_err([], <<-INPUT, %w("hello"), []) load(#{ t.path.dump }, true) INPUT + t.close(true) end def test_tainted_loadpath @@ -320,6 +324,8 @@ class TestRequire < Test::Unit::TestCase require "#{ file }" p :ok INPUT + + t.close(true) end def test_relative diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index c7cda12659..cd100de3bd 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -528,7 +528,7 @@ class TestRubyOptions < Test::Unit::TestCase t.flush assert_in_out_err(["-e", "$0=ARGV[0]; Process.kill :SEGV, $$", t.path], "", [], expected_stderr, bug7597, opts) - t.close + t.close(true) end def test_DATA |
