blob: c532316ba128f182c79fef04311e372a2e06d2fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
## -*- sh -*-
DATASRC=$top_srcdir/test/data
DATAOUT=$top_builddir/test/data
TESTFILE0=data.bplist
TESTFILE1=7.plist
TESTFILE2=uid.bplist
if ! test -d "$DATAOUT"; then
mkdir -p $DATAOUT
fi
export PLIST_JSON_DEBUG=1
echo "Converting (failure expected)"
$top_builddir/tools/plistutil -f json -i $DATASRC/$TESTFILE0 -o /dev/null
if [ $? -neq 2 ]; then
exit 1
fi
echo "Converting (failure expected)"
$top_builddir/tools/plistutil -f json -i $DATASRC/$TESTFILE1 -o /dev/null
if [ $? -neq 2 ]; then
exit 2
fi
echo "Converting (failure expected)"
$top_builddir/tools/plistutil -f json -i $DATASRC/$TESTFILE2 -o /dev/null
if [ $? -neq 2 ]; then
exit 3
fi
exit 0
|