X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4995783a3270e2f6d2d3b5226238fbbccf2864c1..660e8d8345bfe7f34dfc8db655eff6a0af8bd47f:/apps/workbench/test/integration_helper.rb diff --git a/apps/workbench/test/integration_helper.rb b/apps/workbench/test/integration_helper.rb index 8e317ba4e2..86162834c7 100644 --- a/apps/workbench/test/integration_helper.rb +++ b/apps/workbench/test/integration_helper.rb @@ -51,11 +51,20 @@ class IntegrationTestRunner < MiniTest::Unit _system('bundle', 'exec', 'rake', 'db:test:load') _system('bundle', 'exec', 'rake', 'db:fixtures:load') _system('bundle', 'exec', 'rails', 'server', '-d') - timeout = Time.now.tv_sec + 5 - while (not File.exists? SERVER_PID_PATH) and (Time.now.tv_sec < timeout) + timeout = Time.now.tv_sec + 10 + begin sleep 0.2 + begin + server_pid = IO.read(SERVER_PID_PATH).to_i + good_pid = (server_pid > 0) and (Process.kill(0, pid) rescue false) + rescue Errno::ENOENT + good_pid = false + end + end while (not good_pid) and (Time.now.tv_sec < timeout) + if not good_pid + raise RuntimeError, "could not find API server Rails pid" end - IO.read(SERVER_PID_PATH).to_i + server_pid end begin super(args)