diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-26 23:24:08 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-26 23:24:08 +0000 |
| commit | b1bd6acc3b0c64eb7982d17c4b9cca2cf8263c6b (patch) | |
| tree | 79d47c4acb8e3a3b297b351391a0b23bee4f9f43 /bootstraptest | |
| parent | 63e0a21cdd3894b2b14a7cb0a5cc24d44ec673ff (diff) | |
| download | ruby-b1bd6acc3b0c64eb7982d17c4b9cca2cf8263c6b.tar.gz ruby-b1bd6acc3b0c64eb7982d17c4b9cca2cf8263c6b.tar.xz ruby-b1bd6acc3b0c64eb7982d17c4b9cca2cf8263c6b.zip | |
refine a test.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
| -rw-r--r-- | bootstraptest/test_knownbug.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb index a5088ac23..0b8c795cd 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 |
