mirror of
https://github.com/libimobiledevice/libplist.git
synced 2026-05-17 20:30:34 +00:00
16 lines
285 B
Bash
Executable File
16 lines
285 B
Bash
Executable File
## -*- sh -*-
|
|
|
|
DATASRC=$top_srcdir/test/data
|
|
TESTFILE=recursion.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
|