summaryrefslogtreecommitdiffstats
path: root/test/malformed_dict.test
blob: cbad2bdc3f4f8b1e40db2cfa24a36e0a01e09915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
## -*- sh -*-

DATASRC=$top_srcdir/test/data
TESTFILE=malformed_dict.bplist
DATAIN0=$DATASRC/$TESTFILE
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