@@ -295,7 +295,7 @@ void TestSerialization::testStreamRead()
295
295
UASSERT (readU8 (is) == 0x11 );
296
296
UASSERT (readU16 (is) == 0x2233 );
297
297
UASSERT (readU32 (is) == 0x44556677 );
298
- UASSERT (readU64 (is) == 0x8899AABBCCDDEEFF );
298
+ UASSERT (readU64 (is) == 0x8899AABBCCDDEEFFLL );
299
299
300
300
UASSERT (readS8 (is) == -128 );
301
301
UASSERT (readS16 (is) == 30000 );
@@ -336,7 +336,7 @@ void TestSerialization::testStreamWrite()
336
336
writeU8 (os, 0x11 );
337
337
writeU16 (os, 0x2233 );
338
338
writeU32 (os, 0x44556677 );
339
- writeU64 (os, 0x8899AABBCCDDEEFF );
339
+ writeU64 (os, 0x8899AABBCCDDEEFFLL );
340
340
341
341
writeS8 (os, -128 );
342
342
writeS16 (os, 30000 );
@@ -382,7 +382,7 @@ void TestSerialization::testVecPut()
382
382
putU8 (&buf, 0x11 );
383
383
putU16 (&buf, 0x2233 );
384
384
putU32 (&buf, 0x44556677 );
385
- putU64 (&buf, 0x8899AABBCCDDEEFF );
385
+ putU64 (&buf, 0x8899AABBCCDDEEFFLL );
386
386
387
387
putS8 (&buf, -128 );
388
388
putS16 (&buf, 30000 );
@@ -464,7 +464,7 @@ void TestSerialization::testBufReader()
464
464
UASSERT (buf.getU8 () == 0x11 );
465
465
UASSERT (buf.getU16 () == 0x2233 );
466
466
UASSERT (buf.getU32 () == 0x44556677 );
467
- UASSERT (buf.getU64 () == 0x8899AABBCCDDEEFF );
467
+ UASSERT (buf.getU64 () == 0x8899AABBCCDDEEFFLL );
468
468
UASSERT (buf.getS8 () == -128 );
469
469
UASSERT (buf.getS16 () == 30000 );
470
470
UASSERT (buf.getS32 () == -6 );
@@ -576,7 +576,7 @@ void TestSerialization::testBufReader()
576
576
UASSERT (u8_data == 0x11 );
577
577
UASSERT (u16_data == 0x2233 );
578
578
UASSERT (u32_data == 0x44556677 );
579
- UASSERT (u64_data == 0x8899AABBCCDDEEFF );
579
+ UASSERT (u64_data == 0x8899AABBCCDDEEFFLL );
580
580
UASSERT (s8_data == -128 );
581
581
UASSERT (s16_data == 30000 );
582
582
UASSERT (s32_data == -6 );
0 commit comments