From: Peter Verthez Date: Thu, 24 Oct 2002 16:56:24 +0000 (+0000) Subject: Portability fix: 'if ! diff' is not always supported. X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;h=a426d77f10289d95a6360a00f7e10ecbc07d5372;p=gedcom-parse.git Portability fix: 'if ! diff' is not always supported. --- diff --git a/t/anselconv.test b/t/anselconv.test index 2eb0495..be99800 100755 --- a/t/anselconv.test +++ b/t/anselconv.test @@ -23,16 +23,18 @@ fi echo "Testing conversion from ANSEL to UTF-8" >> testgedcom.out iconv -f ANSEL -t UTF-8 $srcdir/input/ansel.ged > anselutf8.out -if ! diff $srcdir/input/anselutf8.ged anselutf8.out >> testgedcom.out +if diff $srcdir/input/anselutf8.ged anselutf8.out >> testgedcom.out then - retval=1 -else echo "Testing conversion from UTF-8 to ANSEL" >> testgedcom.out iconv -f UTF-8 -t ANSEL $srcdir/input/anselutf8.ged > ansel.out - if ! diff $srcdir/input/ansel.ged ansel.out >> testgedcom.out + if diff $srcdir/input/ansel.ged ansel.out >> testgedcom.out then + : + else retval=1 fi +else + retval=1 fi rm gedcom.enc