From a14f8c65162b1316ff256e6cebb503726a7f9c95 Mon Sep 17 00:00:00 2001 From: Matej Ferencevic Date: Thu, 14 Sep 2017 17:33:29 +0200 Subject: [PATCH] Removed buggy check from QA Reviewers: buda, mislav.bradac Reviewed By: mislav.bradac Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D796 --- tests/qa/run | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/tests/qa/run b/tests/qa/run index b713d10f6..eea096a27 100755 --- a/tests/qa/run +++ b/tests/qa/run @@ -73,18 +73,11 @@ background_pid=$! function cleanup_and_exit { kill -9 $background_pid + sleep 2 exit $1 } -sleep 1 - -ps -p $background_pid > /dev/null -if [[ $? -ne 0 ]]; then - echo "Starting memgraph failed." - echo "Perhaps you forgot to build Memgraph before running this script, " - echo "or another program uses same port!" - cleanup_and_exit 1 -fi +sleep 2 python3 tck_engine/test_executor.py $tck_flags cleanup_and_exit $?