diff options
| author | 2016-06-29 05:49:53 +0200 | |
|---|---|---|
| committer | 2016-06-29 05:49:53 +0200 | |
| commit | 02bd8acd41d1ed7891100fa0057981e98a0dbdad (patch) | |
| tree | d15490d7fa4f6d951d70d34cae166445c8983896 /test/signedunsigned3.test | |
| parent | acd226d1f71a78dd23b47a9a5c4ca8cf8068d509 (diff) | |
| download | libplist-02bd8acd41d1ed7891100fa0057981e98a0dbdad.tar.gz libplist-02bd8acd41d1ed7891100fa0057981e98a0dbdad.tar.bz2 | |
test: Add another test case for signed/unsigned (multiple) integers
Apart from testing the actual integer signed vs. unsigned value storage
and conversion, this test will check that the binary plist optimization
is not re-using existing values. Basically it will test the fix that
was introduced with commit acd226d1f71a78dd23b47a9a5c4ca8cf8068d509.
Diffstat (limited to 'test/signedunsigned3.test')
| -rwxr-xr-x | test/signedunsigned3.test | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/signedunsigned3.test b/test/signedunsigned3.test new file mode 100755 index 0000000..9bada3e --- /dev/null +++ b/test/signedunsigned3.test | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | ## -*- sh -*- | ||
| 2 | |||
| 3 | set -e | ||
| 4 | |||
| 5 | DATASRC=$top_srcdir/test/data | ||
| 6 | TESTFILE0=signedunsigned.plist | ||
| 7 | TESTFILE1=signedunsigned.bplist | ||
| 8 | DATAIN0=$DATASRC/$TESTFILE0 | ||
| 9 | DATAIN1=$DATASRC/$TESTFILE1 | ||
| 10 | |||
| 11 | CMPFILE0=signedunsigned.bplist | ||
| 12 | CMPFILE1=signedunsigned.plist | ||
| 13 | DATACMP0=$DATASRC/$CMPFILE0 | ||
| 14 | DATACMP1=$DATASRC/$CMPFILE1 | ||
| 15 | |||
| 16 | DATAOUT0=$top_builddir/test/data/$TESTFILE0.bin | ||
| 17 | DATAOUT1=$top_builddir/test/data/$TESTFILE1.xml | ||
| 18 | |||
| 19 | $top_builddir/tools/plistutil -i $DATAIN0 -o $DATAOUT0 | ||
| 20 | $top_builddir/tools/plistutil -i $DATAIN1 -o $DATAOUT1 | ||
| 21 | |||
| 22 | diff $DATACMP0 $DATAOUT0 | ||
| 23 | diff $DATACMP1 $DATAOUT1 | ||
