[linux] Fixed tests script

This commit is contained in:
MapsWithMe OSM User 2014-01-20 18:37:56 +01:00 committed by Alex Zolotarev
parent 2135c325cf
commit d43faafca3

View file

@ -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