aboutsummaryrefslogtreecommitdiffstats
path: root/test/regtest.sh
diff options
context:
space:
mode:
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