summaryrefslogtreecommitdiffstats
path: root/tests/Dockerfiletest/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Dockerfiletest/run.sh')
-rwxr-xr-xtests/Dockerfiletest/run.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/Dockerfiletest/run.sh b/tests/Dockerfiletest/run.sh
deleted file mode 100755
index b82b810..0000000
--- a/tests/Dockerfiletest/run.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-SCRIPT_DIR=$(cd $(dirname $0); pwd)
-
-echo "running tests in ${SCRIPT_DIR}"
-
-for test in ${SCRIPT_DIR}/test_*.sh ; do
- $test
- if [ $? -ne 0 ]; then
- exit 1
- fi
-done