summaryrefslogtreecommitdiff
path: root/test/regtest.sh
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:47:02 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:47:02 +0300
commit315bd501ca696bc3e3c938b4604d8dac7a6f512f (patch)
treecf992f0df002126292f7487ca6c0d36d7fe748b9 /test/regtest.sh
parent85c0d5edb781c9f31b79e48452b1ca68643f41de (diff)
downloadgawk-315bd501ca696bc3e3c938b4604d8dac7a6f512f.tar.gz
Move to gawk 3.1.5.gawk-3.1.5
Diffstat (limited to 'test/regtest.sh')
-rwxr-xr-xtest/regtest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regtest.sh b/test/regtest.sh
index 72b0dbf9..37472b1c 100755
--- a/test/regtest.sh
+++ b/test/regtest.sh
@@ -9,7 +9,7 @@ for i in reg/*.awk
do
it=`basename $i .awk`
$AWK -f $i <reg/$it.in >reg/$it.out 2>&1
- if cmp -s reg/$it.out reg/$it.good
+ if diff reg/$it.out reg/$it.good
then
rm -f reg/$it.out
else