summaryrefslogtreecommitdiff
path: root/test/runTest
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-08-26 03:33:26 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-08-26 03:33:26 -0300
commit8eafe04ec5eaf917d9e2d58993604c454f1a26d1 (patch)
treec0e9bb91659c3a1f5814ba94ee251639b52c5873 /test/runTest
parentf17c9169de91036cd4b9bb725d2cc6713ad06ce5 (diff)
re-estructure dbscrips
Diffstat (limited to 'test/runTest')
-rwxr-xr-xtest/runTest15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/runTest b/test/runTest
deleted file mode 100755
index b8713d8..0000000
--- a/test/runTest
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-. "$(dirname ${BASH_SOURCE[0]})/lib/common.inc"
-
-for t in "$(dirname ${BASH_SOURCE[0]})/test.d/"*.sh; do
- l=$(basename ${t} .sh)
- if [ -x ${t} ]; then
- msg "Running test '${l}'"
- ${t}
- [ $? -ne 0 ] && die "Test '${l}' failed"
- echo -e "\n\n\n"
- else
- warning "Skipping test ${l}"
- fi
-done