summaryrefslogtreecommitdiff
path: root/tests/scripts/run-xpass
blob: d20c436c8c2dbd51f37d24ca6ec13811c2aec0c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

TEST="$1"
OK="reports/$TEST/OK"
LOG="reports/$TEST/log"

if "./$1" > "$LOG" 2> "$LOG"; then
	echo OK > "$OK"
else
	echo FAIL > "$OK"
fi