mirror of
https://github.com/encounter/libplist.git
synced 2026-03-30 11:18:56 -07:00
13 lines
371 B
Bash
Executable File
13 lines
371 B
Bash
Executable File
## -*- sh -*-
|
|
|
|
set -e
|
|
|
|
DATASRC=$top_srcdir/test/data
|
|
TESTFILES="dictref1byte.bplist dictref2bytes.bplist dictref3bytes.bplist dictref4bytes.bplist dictref5bytes.bplist dictref6bytes.bplist dictref7bytes.bplist dictref8bytes.bplist"
|
|
CMPFILE=offxml.plist
|
|
|
|
for I in $TESTFILES; do
|
|
echo "* checking $I"
|
|
$top_builddir/test/plist_cmp $DATASRC/$I $DATASRC/$CMPFILE
|
|
done
|