summaryrefslogtreecommitdiff
path: root/scripts/run_tests.sh
diff options
context:
space:
mode:
authorJustin R. Miller <incanus@codesorcery.net>2014-08-20 11:21:16 -0700
committerJustin R. Miller <incanus@codesorcery.net>2014-08-20 11:21:16 -0700
commitd094998885ab8211cbf894701bf6dd4e869e14d5 (patch)
tree91acd1bd3c58cae55bc9053e548665fdcd56eb46 /scripts/run_tests.sh
parent832f5406d48ef0b410f41980bffa4f42e7421555 (diff)
downloadqtlocation-mapboxgl-d094998885ab8211cbf894701bf6dd4e869e14d5.tar.gz
rename tests script
Diffstat (limited to 'scripts/run_tests.sh')
-rwxr-xr-xscripts/run_tests.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh
new file mode 100755
index 0000000000..7165948248
--- /dev/null
+++ b/scripts/run_tests.sh
@@ -0,0 +1,10 @@
+#!/usr/bin/env bash
+
+set -e
+set -o pipefail
+
+cd build/Testing
+
+for TEST in ./test_* ; do
+ ${TEST}
+done