Skip to content

Commit d2f71cf

Browse files
committed
Fix ab_dump_hdr test: match ab_afmt translation string
ab_mstr now delegates to ab_afmt first, which returns the ab_dflt string "memory access violation" instead of the old ab_codes "MEMORY ACCESS FAULT". Test updated to match.
1 parent 6662159 commit d2f71cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/tabend.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ static void ab_dump_hdr(void)
248248
int n = ab_snap(A, obuf, (int)sizeof(obuf));
249249
CHECK(n > 0);
250250
CHECK(strstr(obuf, "ABEND G0C4") != NULL);
251-
CHECK(strstr(obuf, "MEMORY ACCESS FAULT") != NULL);
251+
CHECK(strstr(obuf, "memory access violation") != NULL);
252252
CHECK(strstr(obuf, "test_kern") != NULL);
253253
CHECK(strstr(obuf, "gfx1100") != NULL);
254254
CHECK(strstr(obuf, "END OF DUMP") != NULL);

0 commit comments

Comments
 (0)