blob: 19f7a4a3a654093454b8462c41852db937387861 [file] [log] [blame]
#!/bin/sh
ptestdir=$(dirname "$(readlink -f "$0")")
cd "$ptestdir"/tests || exit
tests="replace_testsuite test_tevent_tag test_tevent_trace"
for f in $tests
do
if test -x ./"$f"; then
if ./"$f" > ./"$f".out 2> ./"$f".err; then
echo "PASS: $f"
else
echo "FAIL: $f"
fi
fi
done