From 2fb7c2eb53248db4ee8e03ec91843905c3c59708 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Raimbault?= Date: Tue, 9 Jun 2015 12:33:43 +0200 Subject: [PATCH] Wait the server for 1 second before running tests --- tests/unit-tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/unit-tests.sh b/tests/unit-tests.sh index 9fd387e0b..37f716f3a 100755 --- a/tests/unit-tests.sh +++ b/tests/unit-tests.sh @@ -8,6 +8,8 @@ rm -f $client_log $server_log echo "Starting server" ./unit-test-server > $server_log 2>&1 & +sleep 1 + echo "Starting client" ./unit-test-client > $client_log 2>&1 rc=$?