diff options
author | ngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-24 16:23:23 +0000 |
---|---|---|
committer | ngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-24 16:23:23 +0000 |
commit | 073f94e24f17ee2786df6f5d54624482ba95284f (patch) | |
tree | 4523abe13c319ef795fc66f0bf85981aac7b7e3e | |
parent | 32618ba7438a2247042bba9b5d85b5d49070f5e5 (diff) |
* test/ruby/test_rubyoptions.rb (test_script_from_stdin): slave pty
should be manipulated because master pty may not be a tty on some
environment (e.g. Solaris). [Bug:#5222] [ruby-dev:44420]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33049 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | test/ruby/test_rubyoptions.rb | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +Thu Aug 25 01:11:36 2011 Naohisa Goto <[email protected]> + + * test/ruby/test_rubyoptions.rb (test_script_from_stdin): slave pty + should be manipulated because master pty may not be a tty on some + environment (e.g. Solaris). [Bug:#5222] [ruby-dev:44420] + Wed Aug 24 15:13:56 2011 Koichi Sasada <[email protected]> * iseq.h, iseq.c, compile.c: Change the line number data structure diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index 1bce8e0565..83f7761c52 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -514,7 +514,7 @@ class TestRubyOptions < Test::Unit::TestCase IO.pipe {|r, w| begin PTY.open {|m, s| - m.echo = false + s.echo = false m.print("\C-d") pid = spawn(EnvUtil.rubybin, :in => s, :out => w) w.close @@ -530,7 +530,7 @@ class TestRubyOptions < Test::Unit::TestCase assert_equal("", result, '[ruby-dev:37798]') IO.pipe {|r, w| PTY.open {|m, s| - m.echo = false + s.echo = false pid = spawn(EnvUtil.rubybin, :in => s, :out => w) w.close m.print("$stdin.read; p $stdin.gets\n\C-d") |