summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-26 23:24:08 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-26 23:24:08 +0000
commitbb32165fe9934ee3fb2bb06cb47772b77af0ce19 (patch)
tree79d47c4acb8e3a3b297b351391a0b23bee4f9f43
parent654cdfb90ba127bcf453d3d45dc7a3f4c99a8c05 (diff)
refine a test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--bootstraptest/test_knownbug.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index a5088ac234..0b8c795cde 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -5,8 +5,8 @@
assert_finish 1, %q{
r, w = IO.pipe
- t1 = Thread.new { r.sysread(10) }
- t2 = Thread.new { r.sysread(10) }
+ t1 = Thread.new { r.sysread(1) }
+ t2 = Thread.new { r.sysread(1) }
sleep 0.1
w.write "a"
sleep 0.1