diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-27 03:13:54 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-27 03:13:54 +0000 |
| commit | e0b3d5c763a98c49485630b69b3e73b342b5f1d0 (patch) | |
| tree | 4c4f5659c60a798ea474a1a40d317c094b1014db /test/ruby/test_io.rb | |
| parent | 0f1bf83ba080785f7e7363a5dc7ded2fd013c591 (diff) | |
| download | ruby-e0b3d5c763a98c49485630b69b3e73b342b5f1d0.tar.gz ruby-e0b3d5c763a98c49485630b69b3e73b342b5f1d0.tar.xz ruby-e0b3d5c763a98c49485630b69b3e73b342b5f1d0.zip | |
* test/ruby/envutil.rb: reverted the changeset 19948 because it
concealed unexpected behaviours of ruby.
* test/ruby/test_io.rb: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_io.rb')
| -rw-r--r-- | test/ruby/test_io.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 2b6810e05..4d9bb51fe 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -581,7 +581,7 @@ class TestIO < Test::Unit::TestCase def ruby(*args) args = ['-e', '$>.write($<.read)'] if args.empty? ruby = EnvUtil.rubybin - f = IO.popen([ruby, "--disable-gems"] + args, 'r+') + f = IO.popen([ruby] + args, 'r+') yield(f) ensure f.close unless !f || f.closed? |
