diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-10-07 18:50:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-10-07 18:50:07 +0000 |
commit | e700a90879806fa32aa21efbf877db646a8d9fd8 (patch) | |
tree | fe734b671f8bbe3fb342bff6dc2690f389bacdb3 /posix/bug-regex11.c | |
parent | d0b96fc49b1535d820fe9680746677e55b8e83db (diff) | |
download | glibc-e700a90879806fa32aa21efbf877db646a8d9fd8.tar glibc-e700a90879806fa32aa21efbf877db646a8d9fd8.tar.gz glibc-e700a90879806fa32aa21efbf877db646a8d9fd8.tar.bz2 glibc-e700a90879806fa32aa21efbf877db646a8d9fd8.zip |
Update.
2003-10-07 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Backout 2003-10-02
changes.
(SAVE_OLDTYPE_0): Fix a typo.
Diffstat (limited to 'posix/bug-regex11.c')
-rw-r--r-- | posix/bug-regex11.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/posix/bug-regex11.c b/posix/bug-regex11.c index c7a8b6537a..ae4bb06e06 100644 --- a/posix/bug-regex11.c +++ b/posix/bug-regex11.c @@ -58,10 +58,8 @@ struct { "([0-9]).*\\1(a*)", "7;7a6", REG_EXTENDED, 3, { { 0, 4 }, { 0, 1 }, { 3, 4 } } }, { "([0-9]).*\\1(a*)", "7;7a", REG_EXTENDED, 3, { { 0, 4 }, { 0, 1 }, { 3, 4 } } }, #if 0 - /* XXX This test seems wrong. --drepper */ - { "()(b)\\1c\\2", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 0 }, { 1, 2 } } }, - /* XXX Not used since they fail so far. */ + { "()(b)\\1c\\2", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 0 }, { 1, 2 } } }, { "(b())\\2\\1", "bbbb", REG_EXTENDED, 3, { { 0, 2 }, { 0, 1 }, { 1, 1 } } }, { "(bb())\\2\\1", "bbbb", REG_EXTENDED, 3, { { 0, 4 }, { 0, 2 }, { 2, 2 } } }, #endif |