diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-18 10:53:15 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-18 10:53:15 +0000 |
commit | c7e85d0c08ccbfc7604f6d50579c3a4b25281ff1 (patch) | |
tree | aacc8173cb2fc87edb5fde53c4bc83aa160c79fa /posix | |
parent | 6e9b72d3abab3236a2e079587ad5c5653d96e7bd (diff) | |
download | glibc-c7e85d0c08ccbfc7604f6d50579c3a4b25281ff1.tar glibc-c7e85d0c08ccbfc7604f6d50579c3a4b25281ff1.tar.gz glibc-c7e85d0c08ccbfc7604f6d50579c3a4b25281ff1.tar.bz2 glibc-c7e85d0c08ccbfc7604f6d50579c3a4b25281ff1.zip |
Update.
* posix/TESTS: Fix expected result for test cases with * with no
leading expression.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/TESTS | 8 | ||||
-rw-r--r-- | posix/testcases.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/posix/TESTS b/posix/TESTS index 858e22315e..f2c9886405 100644 --- a/posix/TESTS +++ b/posix/TESTS @@ -54,10 +54,10 @@ 0:ab|cd:abcd 0:()ef:def 0:()*:- -1:*a:- -0:^*:- -0:$*:- -1:(*)b:- +2:*a:- +2:^*:- +2:$*:- +2:(*)b:- 1:$b:b 2:a\:- 0:a\(b:a(b diff --git a/posix/testcases.h b/posix/testcases.h index 5f3b38921a..834f53049f 100644 --- a/posix/testcases.h +++ b/posix/testcases.h @@ -54,10 +54,10 @@ {0, "ab|cd", "abcd"}, {0, "()ef", "def"}, {0, "()*", "-"}, - {1, "*a", "-"}, - {0, "^*", "-"}, - {0, "$*", "-"}, - {1, "(*)b", "-"}, + {2, "*a", "-"}, + {2, "^*", "-"}, + {2, "$*", "-"}, + {2, "(*)b", "-"}, {1, "$b", "b"}, {2, "a\\", "-"}, {0, "a\\(b", "a(b"}, |