From d43faafca3ce04ceb60f62b588c9b55ffedd43f6 Mon Sep 17 00:00:00 2001 From: MapsWithMe OSM User Date: Mon, 20 Jan 2014 18:37:56 +0100 Subject: [PATCH] [linux] Fixed tests script --- tools/unix/run_tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/unix/run_tests.sh b/tools/unix/run_tests.sh index 4b596e72b1..8701509351 100755 --- a/tools/unix/run_tests.sh +++ b/tools/unix/run_tests.sh @@ -10,7 +10,8 @@ fi set -x -find "`dirname $0`/../../../omim-build-$1/out/$1" -name "*_tests" | \ +# Ignore GUI tests as they need display connection and can't be tested in linux console +find "`dirname $0`/../../../omim-build-$1/out/$1" -name "*_tests" \( ! -iname "gui_tests" \)| \ grep -v /tmp/ | \ awk '{ print $0" &&" } END { print "echo REALLY ALL TESTS PASSED" }' | \ sh -x