From b2df6d9a99f940720975d478813991c2fdae0075 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 8 Jun 2011 15:18:03 +0200 Subject: [PATCH] Increase racy sleep to make some tests pass --- test/runner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner.c b/test/runner.c index 778bfb65..a9306480 100644 --- a/test/runner.c +++ b/test/runner.c @@ -77,7 +77,7 @@ int run_task(task_entry_t *test, int timeout, int benchmark_output) { } /* Wait a little bit to allow servers to start. Racy. */ - uv_sleep(50); + uv_sleep(100); /* Start the main test process. */ if (process_start(test->process_name, &processes[process_count]) == -1) {