File: json-invalid-types.test

package info (click to toggle)
libplist 2.7.0%2Bgit20250820-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,760 kB
  • sloc: ansic: 10,004; cpp: 1,382; makefile: 367; sh: 102
file content (33 lines) | stat: -rwxr-xr-x 667 bytes parent folder | download | duplicates (2)
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