summaryrefslogtreecommitdiffstats
path: root/tools/regression/usr.bin/m4/regress.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/usr.bin/m4/regress.sh')
-rw-r--r--tools/regression/usr.bin/m4/regress.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/regression/usr.bin/m4/regress.sh b/tools/regression/usr.bin/m4/regress.sh
index b73d410..9619d52 100644
--- a/tools/regression/usr.bin/m4/regress.sh
+++ b/tools/regression/usr.bin/m4/regress.sh
@@ -9,8 +9,9 @@ cd $TESTDIR
STATUS=0
+echo 1..2
+
for test in GNU/changecom changecom; do
- echo "Running test $test"
case "$test" in
GNU/*)
M4="m4 -g"
@@ -28,10 +29,10 @@ for test in GNU/changecom changecom; do
;;
esac
if [ $? -eq 0 ]; then
- echo "PASS: Test $test detected no regression, output matches."
+ echo "ok - $test # Test detected no regression, output matches."
else
STATUS=$?
- echo "FAIL: Test $test failed: regression detected. See above."
+ echo "not ok - $test # Test failed: regression detected. See above."
fi
done
OpenPOWER on IntegriCloud