1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
akr 2010-08-17 11:06:22 +00:00
parent e44f5bcbd9
commit 3eabe19ea9
2 changed files with 8 additions and 1 deletions

View file

@ -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.

View file

@ -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