diff options
Diffstat (limited to 'test/amp.test')
-rwxr-xr-x | test/amp.test | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/amp.test b/test/amp.test index 0815391..76b32ff 100755 --- a/test/amp.test +++ b/test/amp.test @@ -1,7 +1,5 @@ ## -*- sh -*- -set -e - DATASRC=$top_srcdir/test/data TESTFILE=amp.plist DATAIN0=$DATASRC/$TESTFILE @@ -9,6 +7,10 @@ DATAOUT0=$top_builddir/test/data/$TESTFILE.out rm -rf $DATAOUT0 $top_builddir/tools/plistutil -i $DATAIN0 -o $DATAOUT0 -if test -f $DATAOUT0; then + +# test succeeds if plistutil fails +if [ $? -eq 0 ]; then exit 1 +else + exit 0 fi |