summaryrefslogtreecommitdiff
path: root/test/test_runner.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_runner.sh')
-rwxr-xr-xtest/test_runner.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/test_runner.sh b/test/test_runner.sh
deleted file mode 100755
index c97d8d0f7..000000000
--- a/test/test_runner.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env bash
-set -e
-
-cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
-
-# Load the helpers.
-. helpers.bash
-
-function execute() {
- >&2 echo "++ $@"
- eval "$@"
-}
-
-# Tests to run. Defaults to all.
-if [[ -z "${TESTS}" ]]; then
- TESTS=${@:-.}
-else
- TESTS=$TESTS
-fi
-
-# Run the tests.
-execute time bats --tap $TESTS