dib-utils/tests/run_tests.sh

17 lines
246 B
Bash
Executable File

#!/bin/bash
#
# Runs all test cases in this directory
#
set -ue
set -o pipefail
TESTS_BASE_DIR=$(cd $(dirname "$0") && pwd)
for tc in ${TESTS_BASE_DIR}/tc??.sh; do
echo "--- Running ${tc} ---"
${tc}
done
echo "--- TESTS COMPLETE ---"