===================================================================
Gbp-Pq: Name 32-bit-test-array-fixes.patch
t_array_init(&arr, 2);
array_push_back(&arr, value);
+ /* this test triggers different failures on 32- versus
+ * 64-bit architectures. It's a failure in both cases,
+ * so we just handle it... */
+#if SIZEOF_VOID_P == 4
+ test_expect_fatal_string("memory allocation overflow");
+#else
test_expect_fatal_string("Buffer write out of range");
+#endif
/* this is supposed to assert-crash before it even attempts to
access value */
array_append(&arr, value, UINT_MAX);