From 429cbc660ae14d4998715803b44c71abf0e4a339 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 23 Dec 2021 03:09:07 +0100 Subject: Add support for JSON format --- test/recursion.test | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'test/recursion.test') diff --git a/test/recursion.test b/test/recursion.test index 0120a12..9946d81 100755 --- a/test/recursion.test +++ b/test/recursion.test @@ -1,7 +1,5 @@ ## -*- sh -*- -set -e - DATASRC=$top_srcdir/test/data TESTFILE=recursion.bplist DATAIN0=$DATASRC/$TESTFILE @@ -9,3 +7,9 @@ DATAOUT0=$top_builddir/test/data/$TESTFILE.out $top_builddir/tools/plistutil -i $DATAIN0 -o $DATAOUT0 +# test succeeds if plistutil fails +if [ $? -eq 0 ]; then + exit 1 +else + exit 0 +fi -- cgit v1.1-32-gdbae