Files
libplist/test/data/signedunsigned.plist
Nikias Bassen 02bd8acd41 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 acd226d1f7.
2016-06-29 05:49:53 +02:00

12 lines
375 B
Plaintext

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<integer>-1</integer>
<integer>18446744073709551615</integer>
<integer>9223372036854775807</integer>
<integer>-9223372036854775808</integer>
<integer>9223372036854775808</integer>
</array>
</plist>