summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_rubyoptions.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index 8f22bdaecc..c7cda12659 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -466,8 +466,12 @@ class TestRubyOptions < Test::Unit::TestCase
write_file("test-script", "$0 = 'hello world'; sleep 60")
pid = spawn(EnvUtil.rubybin, "test-script")
- sleep 0.1
- ps = `ps -p #{pid} -o command`
+ ps = nil
+ 10.times do
+ sleep 0.1
+ ps = `ps -p #{pid} -o command`
+ break if /hello world/ =~ ps
+ end
assert_match(/hello world/, ps)
Process.kill :KILL, pid
end