File: run_tests.sh

package info (click to toggle)
python-dib-utils 0.0.11-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: sh: 196; makefile: 12; python: 4
file content (16 lines) | stat: -rwxr-xr-x 246 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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 ---"