Snap for 13690702 from e2505a442e87b48ae57caea98c91668b8982e67f to 25Q4-release

Change-Id: Ic862559c665bfa5f84ab087c351d03c1a55275ee
diff --git a/test/integration/mallocx.c b/test/integration/mallocx.c
index fd960f3..0498187 100644
--- a/test/integration/mallocx.c
+++ b/test/integration/mallocx.c
@@ -63,7 +63,7 @@
 	    "Expected OOM for mallocx(size=%#zx, 0)", ZU(PTRDIFF_MAX)+1);
 
 	assert_ptr_null(mallocx(SIZE_T_MAX, 0),
-	    "Expected OOM for mallocx(size=%#zx, 0)", SIZE_T_MAX);
+	    "Expected OOM for mallocx(size=%#zx, 0)", ZU(SIZE_T_MAX));
 
 	assert_ptr_null(mallocx(1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)),
 	    "Expected OOM for mallocx(size=1, MALLOCX_ALIGN(%#zx))",
diff --git a/test/integration/rallocx.c b/test/integration/rallocx.c
index 7821ca5..d32235a 100644
--- a/test/integration/rallocx.c
+++ b/test/integration/rallocx.c
@@ -224,7 +224,7 @@
 	    "Expected OOM for rallocx(p, size=%#zx, 0)", ZU(PTRDIFF_MAX)+1);
 
 	assert_ptr_null(rallocx(p, SIZE_T_MAX, 0),
-	    "Expected OOM for rallocx(p, size=%#zx, 0)", SIZE_T_MAX);
+	    "Expected OOM for rallocx(p, size=%#zx, 0)", ZU(SIZE_T_MAX));
 
 	assert_ptr_null(rallocx(p, 1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)),
 	    "Expected OOM for rallocx(p, size=1, MALLOCX_ALIGN(%#zx))",