1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-16 04:39:03 +00:00

Make test deterministic: assert failed on big-endian arch

This commit is contained in:
dmiller
2017-02-13 18:15:03 +00:00
parent e373419855
commit b757aa1750

View File

@@ -204,7 +204,7 @@ do
assert(_ENV.pack("xc3", 2, 3, 4) == "\x00\x02\x03\x04")
assert(_ENV.pack("c2x2", 2, 3, 4) == "\x02\x03\x00\x00")
assert(_ENV.pack("C2SIL", 0x123, 0xfff1, 0x1ffff, 0x112345678, 0x1234567812345678) == "\x23\xf1\xff\xff\x78\x56\x34\x12\x78\x56\x34\x12\x78\x56\x34\x12")
assert(_ENV.pack("<C2SIL", 0x123, 0xfff1, 0x1ffff, 0x112345678, 0x1234567812345678) == "\x23\xf1\xff\xff\x78\x56\x34\x12\x78\x56\x34\x12\x78\x56\x34\x12")
end
local function unpacker (fixer, status, ...)