diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-11-13 01:04:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-11-13 01:04:26 +0000 |
commit | 813ec65a4d69dcf9b2ecaf42395a4ba62dd2d33c (patch) | |
tree | 3227bd5dc92eb6fc1e3cfaa8cac7107997e439d8 /posix/runptests.c | |
parent | 14744156b935eb7fb1a2013fdc3ce6613defa94d (diff) | |
download | glibc-813ec65a4d69dcf9b2ecaf42395a4ba62dd2d33c.tar.gz glibc-813ec65a4d69dcf9b2ecaf42395a4ba62dd2d33c.tar.xz glibc-813ec65a4d69dcf9b2ecaf42395a4ba62dd2d33c.zip |
Update.
2003-11-12 Ulrich Drepper <drepper@redhat.com> * posix/PTESTS: Cleanup. Fix typoes. Correct bugs in 2003.2. * posix/runptests.c (main): Handle comments. * posix/PTESTS2C.sed: Handle comments.
Diffstat (limited to 'posix/runptests.c')
-rw-r--r-- | posix/runptests.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/posix/runptests.c b/posix/runptests.c index 8d168f8f81..9ce395be4f 100644 --- a/posix/runptests.c +++ b/posix/runptests.c @@ -1,5 +1,5 @@ /* POSIX regex testsuite from IEEE 2003.2. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -50,6 +50,8 @@ main (int argc, char *argv[]) (int) strlen (tests[cnt].reg), "-----------------------------------------------------"); } + else if (tests[cnt].reg == NULL) + printf ("!!! %s\n", tests[cnt].str); else { regex_t re; |