mirror of
https://github.com/encounter/libplist.git
synced 2026-03-30 11:18:56 -07:00
02bd8acd41
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.
12 lines
375 B
Plaintext
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>
|