From 3eabe19ea9cdee6064231d298683701e7ba0056e Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 17 Aug 2010 11:06:22 +0000 Subject: * 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 --- test/ruby/test_io.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/ruby') 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 -- cgit v1.2.3