1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

Add more test cases that now work.

(This used to be commit 7827536c15)
This commit is contained in:
Martin Pool
2002-11-04 23:10:47 +00:00
parent 3f9dac6948
commit e6aa69bac7

View File

@ -37,7 +37,8 @@ class PackTests(unittest.TestCase):
('p', [1], '\x01\0\0\0'),
('d', [0x01020304], '\x04\x03\x02\x01'),
('d', [0x7fffffff], '\xff\xff\xff\x7f'),
# ('d', [0x80000000], '\x00\x00\x00\x80'),
('d', [0x80000000L], '\x00\x00\x00\x80'),
('d', [0x80000069L], '\x69\x00\x00\x80'),
# ('d', [-1], '\xff\xff\xff\xff'),
# ('d', [-255], '\x01\xff\xff\xff'),
# ('d', [-256], '\x00\xff\xff\xff'),