diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-04-27 02:26:23 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-04-27 02:26:23 +0000 |
commit | 300c1a11c0a8aea8ec82abdbef0f195a2091929b (patch) | |
tree | 72ee927892dcfa6e262a7f73e36ca21b46008779 /tools/regression/usr.bin/sed | |
parent | cab9acb79f15bb61027a5f66c3ab61888bbe2662 (diff) | |
download | FreeBSD-src-300c1a11c0a8aea8ec82abdbef0f195a2091929b.zip FreeBSD-src-300c1a11c0a8aea8ec82abdbef0f195a2091929b.tar.gz |
Prefix tests with PASS and FAIL, to make grepping easier, and note this in
the README.
This affects only the base-system regression tests, of course.
Diffstat (limited to 'tools/regression/usr.bin/sed')
-rw-r--r-- | tools/regression/usr.bin/sed/regress.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/regression/usr.bin/sed/regress.sh b/tools/regression/usr.bin/sed/regress.sh index 9198b3f..d7a773c 100644 --- a/tools/regression/usr.bin/sed/regress.sh +++ b/tools/regression/usr.bin/sed/regress.sh @@ -23,10 +23,10 @@ for test in G P psl; do ;; esac if [ $? -eq 0 ]; then - echo "Test $test detected no regression, output matches." + echo "PASS: Test $test detected no regression, output matches." else STATUS=$? - echo "Test $test failed: regression detected. See above." + echo "FAIL: Test $test failed: regression detected. See above." fi done |