diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-11-19 22:42:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-11-19 22:42:09 +0000 |
commit | 8316ede7683be156c9449f51abff0c8032f8a59f (patch) | |
tree | f132e41886745bc522b236989be40695a1902bb6 /posix | |
parent | ee70274a216e7519650e8360d7bda5c5a84eb432 (diff) | |
download | glibc-8316ede7683be156c9449f51abff0c8032f8a59f.tar.gz glibc-8316ede7683be156c9449f51abff0c8032f8a59f.tar.xz glibc-8316ede7683be156c9449f51abff0c8032f8a59f.zip |
Update.
2003-11-19 Ulrich Drepper <drepper@redhat.com> * posix/PTESTS: 2nd GA 135 and 1st GA 136 tests are wrong, too.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/PTESTS | 2 | ||||
-rw-r--r-- | posix/ptestcases.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/posix/PTESTS b/posix/PTESTS index 8235384fec..341c735347 100644 --- a/posix/PTESTS +++ b/posix/PTESTS @@ -226,7 +226,7 @@ 1¦20¦a\(.*b\)c¦axcaxbbbcsxbbbbbbbbc¦ # GA135 1¦7¦\(a\(b\(c\(d\(e\)\)\)\)\)\4¦abcdededede¦ -1¦2¦a\(b\)*c\1¦acb¦ +-1¦-1¦a\(b\)*c\1¦acb¦ 1¦11¦\(a\(b\(c\(d\(e\(f\(g\)h\(i\(j\)\)\)\)\)\)\)\)\9¦abcdefghijjk¦ # GA136 1¦2¦a\(b\)*c\1¦acb¦ diff --git a/posix/ptestcases.h b/posix/ptestcases.h index 39e3494313..ecf0390123 100644 --- a/posix/ptestcases.h +++ b/posix/ptestcases.h @@ -221,10 +221,10 @@ { 1, 20, "a\\(.*b\\)c", "axcaxbbbcsxbbbbbbbbc", }, { 0, 0, "GA135", NULL, }, { 1, 7, "\\(a\\(b\\(c\\(d\\(e\\)\\)\\)\\)\\)\\4", "abcdededede", }, - { 1, 2, "a\\(b\\)*c\\1", "acb", }, + { -1, -1, "a\\(b\\)*c\\1", "acb", }, { 1, 11, "\\(a\\(b\\(c\\(d\\(e\\(f\\(g\\)h\\(i\\(j\\)\\)\\)\\)\\)\\)\\)\\)\\9", "abcdefghijjk", }, { 0, 0, "GA136", NULL, }, - { 1, 2, "a\\(b\\)*c\\1", "acb", }, + { -1, -1, "a\\(b\\)*c\\1", "acb", }, { 4, 7, "a\\(b\\(c\\(d\\(f\\)*\\)\\)\\)\\4", "xYzabcdePQRST", }, { 0, 0, "GA137", NULL, }, { -2, -2, "\\(a\\(b\\)\\)\\3", "foo", }, |