Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/lib/libc/regex Add more information for the malloc fai...



details:   https://anonhg.NetBSD.org/src/rev/81752a4ee3dd
branches:  trunk
changeset: 983801:81752a4ee3dd
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Jun 07 11:45:35 2021 +0000

description:
Add more information for the malloc failure.

diffstat:

 tests/lib/libc/regex/t_exhaust.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 78a506d1d26e -r 81752a4ee3dd tests/lib/libc/regex/t_exhaust.c
--- a/tests/lib/libc/regex/t_exhaust.c  Mon Jun 07 05:29:22 2021 +0000
+++ b/tests/lib/libc/regex/t_exhaust.c  Mon Jun 07 11:45:35 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_exhaust.c,v 1.10 2019/07/09 13:59:25 gson Exp $      */
+/*     $NetBSD: t_exhaust.c,v 1.11 2021/06/07 11:45:35 christos Exp $  */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_exhaust.c,v 1.10 2019/07/09 13:59:25 gson Exp $");
+__RCSID("$NetBSD: t_exhaust.c,v 1.11 2021/06/07 11:45:35 christos Exp $");
 
 #include <sys/resource.h>
 #include <atf-c.h>
@@ -69,7 +69,7 @@
        size_t slen = strlen(s);
        char *p = malloc(dlen + slen + 1);
 
-       ATF_REQUIRE(p != NULL);
+       ATF_REQUIRE_MSG(p != NULL, "slen=%zu, dlen=%zu", slen, dlen);
        strcpy(p, d);
        strcpy(p + dlen, s);
        return p;



Home | Main Index | Thread Index | Old Index