summaryrefslogtreecommitdiff
path: root/scripts/run_tests.sh
diff options
context:
space:
mode:
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