[Scummvm-cvs-logs] scummvm master -> ba228f2bea145f6f8c6d575affc8efac4ed5e87f

lordhoto lordhoto at gmail.com
Sun Jan 4 21:24:28 CET 2015


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
ba228f2bea TEST: Fix another typo in uint64 endian tests.


Commit: ba228f2bea145f6f8c6d575affc8efac4ed5e87f
    https://github.com/scummvm/scummvm/commit/ba228f2bea145f6f8c6d575affc8efac4ed5e87f
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2015-01-04T21:22:43+01:00

Commit Message:
TEST: Fix another typo in uint64 endian tests.

Changed paths:
    test/common/memoryreadstream.h



diff --git a/test/common/memoryreadstream.h b/test/common/memoryreadstream.h
index 79c4079..3e1472f 100644
--- a/test/common/memoryreadstream.h
+++ b/test/common/memoryreadstream.h
@@ -82,7 +82,7 @@ class MemoryReadStreamTestSuite : public CxxTest::TestSuite {
 		TS_ASSERT_EQUALS(ms.pos(), 2);
 		TS_ASSERT_EQUALS(ms.readUint32BE(), 0x03040506UL);
 		TS_ASSERT_EQUALS(ms.pos(), 6);
-		TS_ASSERT_EQUALS(ms.readUint64LE(), 0x0708090A0B0C0D0EULL);
+		TS_ASSERT_EQUALS(ms.readUint64BE(), 0x0708090A0B0C0D0EULL);
 		TS_ASSERT_EQUALS(ms.pos(), 14);
 		TS_ASSERT_EQUALS(ms.readByte(), 0x0F);
 		TS_ASSERT_EQUALS(ms.pos(), 15);






More information about the Scummvm-git-logs mailing list