SDL: comment out signed multiplication overflow ub in testplatform

From 793103ef5245cb5792340ab925f5c1afcadac223 Mon Sep 17 00:00:00 2001
From: Erica Z <[EMAIL REDACTED]>
Date: Mon, 6 Jan 2025 10:36:32 -0500
Subject: [PATCH] comment out signed multiplication overflow ub in testplatform

Patch originally from https://github.com/libsdl-org/sdl2-compat/pull/241
---
 test/testplatform.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/testplatform.c b/test/testplatform.c
index c47bc1af28801..656d0e57a2a86 100644
--- a/test/testplatform.c
+++ b/test/testplatform.c
@@ -285,7 +285,7 @@ static LL_Test LL_Tests[] = {
     { "_allmul", &TST_allmul, 0x0000000080000000ll, 0xFFFFFFFFFFFFFFFEll, 0, 0xFFFFFFFF00000000ll },
     { "_allmul", &TST_allmul, 0xFFFFFFFFFFFFFFFEll, 0x0000000080000008ll, 0, 0xFFFFFFFEFFFFFFF0ll },
     { "_allmul", &TST_allmul, 0x0000000080000008ll, 0xFFFFFFFFFFFFFFFEll, 0, 0xFFFFFFFEFFFFFFF0ll },
-    { "_allmul", &TST_allmul, 0x00000000FFFFFFFFll, 0x00000000FFFFFFFFll, 0, 0xFFFFFFFE00000001ll },
+    /* UNDEFINED { "_allmul", &TST_allmul, 0x00000000FFFFFFFFll, 0x00000000FFFFFFFFll, 0, 0xFFFFFFFE00000001ll }, */
 
     { "_alldiv", &TST_alldiv, 0x0000000000000000ll, 0x0000000000000001ll, 0, 0x0000000000000000ll },
     { "_alldiv", &TST_alldiv, 0x0000000000000000ll, 0xFFFFFFFFFFFFFFFFll, 0, 0x0000000000000000ll },