[Scummvm-git-logs] scummvm master -> 4f0eaa3d7432dc5dd90c00c4e4c16143d9607eb8

lephilousophe noreply at scummvm.org
Sat Feb 7 18:11:35 UTC 2026


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

Summary:
c9f804c569 TEST: Disable cloud for the test backend
4f0eaa3d74 TEST: Fix warning about signed/unsigned comparison


Commit: c9f804c569a3bf738e4a8ec2c6724159887e67e7
    https://github.com/scummvm/scummvm/commit/c9f804c569a3bf738e4a8ec2c6724159887e67e7
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2026-02-07T19:08:22+01:00

Commit Message:
TEST: Disable cloud for the test backend

Changed paths:
    test/system/null_osystem.cpp


diff --git a/test/system/null_osystem.cpp b/test/system/null_osystem.cpp
index 990df846e61..f3f774ef5b2 100644
--- a/test/system/null_osystem.cpp
+++ b/test/system/null_osystem.cpp
@@ -4,6 +4,9 @@
 #define NULL_DRIVER_USE_FOR_TEST 1
 #include "null_osystem.h"
 #include "../backends/platform/null/null.cpp"
+#ifdef USE_CLOUD
+#undef USE_CLOUD
+#endif
 #include "../backends/saves/savefile.cpp"
 
 //#define DISPLAY_ERROR_MESSAGES


Commit: 4f0eaa3d7432dc5dd90c00c4e4c16143d9607eb8
    https://github.com/scummvm/scummvm/commit/4f0eaa3d7432dc5dd90c00c4e4c16143d9607eb8
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2026-02-07T19:11:17+01:00

Commit Message:
TEST: Fix warning about signed/unsigned comparison

Changed paths:
    test/engines/twine/gridtest.h


diff --git a/test/engines/twine/gridtest.h b/test/engines/twine/gridtest.h
index 84cbb42c14d..0409a9b0277 100644
--- a/test/engines/twine/gridtest.h
+++ b/test/engines/twine/gridtest.h
@@ -104,10 +104,10 @@ public:
 		const bool isSprite = false;
 
 		bool result = TwinE::drawGraph(posX, posY, brick_326, isSprite, screen, clip);
-		TS_ASSERT_EQUALS(0, screen.getPixel(posX + 21, posY));
-		TS_ASSERT_EQUALS(0xd0, screen.getPixel(posX + 22, posY));
-		TS_ASSERT_EQUALS(0xf0, screen.getPixel(posX + 25, posY + 37));
-		TS_ASSERT_EQUALS(0, screen.getPixel(posX + 26, posY + 37));
+		TS_ASSERT_EQUALS(0u, screen.getPixel(posX + 21, posY));
+		TS_ASSERT_EQUALS(0xd0u, screen.getPixel(posX + 22, posY));
+		TS_ASSERT_EQUALS(0xf0u, screen.getPixel(posX + 25, posY + 37));
+		TS_ASSERT_EQUALS(0u, screen.getPixel(posX + 26, posY + 37));
 		// Common::DumpFile file;
 		// file.open("test_gridtest.png");
 		// Image::writePNG(file, screen, pal);




More information about the Scummvm-git-logs mailing list