diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-17 11:06:22 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-17 11:06:22 +0000 |
commit | 3eabe19ea9cdee6064231d298683701e7ba0056e (patch) | |
tree | 7285b9ba4359be8c8858d60a978b3a2a59a152aa | |
parent | e44f5bcbd90d51a1d638e19ec08726b1f9b10664 (diff) |
* test/ruby/test_io.rb (test_threaded_flush): test "hi" is not output
twice.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | test/ruby/test_io.rb | 4 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Aug 17 20:05:29 2010 Tanaka Akira <akr@fsij.org> + + * test/ruby/test_io.rb (test_threaded_flush): test "hi" is not output + twice. + Tue Aug 17 15:13:28 2010 NARUSE, Yui <naruse@ruby-lang.org> * lib/date.rb: Re-revert the part of r28950. diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index bd4326060c..1cfcba181a 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -1619,7 +1619,9 @@ End }.gsub(/^\s+/, '') 10.times.map do Thread.start do - assert_in_out_err([], src, [%q["hi!"]]) + assert_in_out_err([], src) {|stdout, stderr| + assert_no_match(/hi.*hi/, stderr.join) + } end end.each {|th| th.join} end |