summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-14 02:26:56 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-14 02:26:56 +0000
commitfbd13e924038f038c4bab10ad2463311edb413b7 (patch)
tree42a38d68f070233c3f590ba19f42cbe99407f301
parent78d3e33cd9775808bb85f844960373a890c78182 (diff)
test_io.rb: investigation
* test/ruby/test_io.rb (test_readpartial_locktmp): check if the reader thread is alive before write. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/ruby/test_io.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 99f962bb19..5ff07741dc 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -2862,9 +2862,10 @@ End
Thread.pass until th.stop?
buf.replace("")
assert_empty(buf, bug6099)
+ th.join rescue ($@.concat(caller); raise) unless th.alive?
w.write(data)
Thread.pass while th.alive?
- th.join
+ th.join rescue ($@.concat(caller); raise)
end
assert_equal(data, buf, bug6099)
rescue RuntimeError # can't modify string; temporarily locked