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

export p4dcc="../../../p4dcc"

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

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