blob: 2a5d9be7c3441a2ebb6ba08c9995b9c7c7725eee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
set -e
export p4dcc="../../../$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
echo "$test_file"
mkdir -p "$tmp_dir"
cd "$tmp_dir"
bash "../../../$test_file"
|