aboutsummaryrefslogtreecommitdiff
path: root/test/integration/rallocx.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/rallocx.c')
-rw-r--r--test/integration/rallocx.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/integration/rallocx.c b/test/integration/rallocx.c
index b698072..8b6cde3 100644
--- a/test/integration/rallocx.c
+++ b/test/integration/rallocx.c
@@ -55,8 +55,9 @@ validate_fill(const void *p, uint8_t c, size_t offset, size_t len)
for (i = 0; i < len; i++) {
uint8_t b = buf[offset+i];
if (b != c) {
- test_fail("Allocation at %p contains %#x rather than "
- "%#x at offset %zu", p, b, c, offset+i);
+ test_fail("Allocation at %p (len=%zu) contains %#x "
+ "rather than %#x at offset %zu", p, len, b, c,
+ offset+i);
ret = true;
}
}