aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/run.sh
blob: 1003e87b1ab99dd40e9a2deae76e752a6af1e41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
set -e

export ducc="../../../build/$BIN"

export testcase=$1
export tmp_dir="tests/tmp/$testcase"

test_file="tests/$testcase.sh"

if [[ ! -f "$test_file" ]]; then
    echo "no test $testcase" >&2
    exit 1
fi

source tests/helpers.sh

echo "$test_file"
mkdir -p "$tmp_dir"
cd "$tmp_dir"
source "../../../$test_file"
cd "../../.."