summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-11 07:47:29 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-11 07:47:29 +0000
commit0676ac37bee1d66d6e06fe4cf8d0362b42d0bf97 (patch)
treee244450d3f8e1e92122ecff344e214121f140399 /bootstraptest
parentb32ee85f97597e1cb13b568dff15ee9a6d9de1ba (diff)
* bootstraptest/test_thread.rb: please please please remember that there are
platforms that do not support fork. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_thread.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/bootstraptest/test_thread.rb b/bootstraptest/test_thread.rb
index 5fdb66bb68..a7478fcd2c 100644
--- a/bootstraptest/test_thread.rb
+++ b/bootstraptest/test_thread.rb
@@ -437,5 +437,9 @@ assert_finish 3, %q{
}, '[ruby-core:23572]'
assert_equal 'ok', %q{
- Process.waitpid2(fork {sleep 1})[1].success? ? 'ok' : 'ng'
+ begin
+ Process.waitpid2(fork {sleep 1})[1].success? ? 'ok' : 'ng'
+ rescue NotImplementedError
+ 'ok'
+ end
}