summaryrefslogtreecommitdiff
path: root/posix/testcases.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-01-18 10:53:15 +0000
committerUlrich Drepper <drepper@redhat.com>2000-01-18 10:53:15 +0000
commitc7e85d0c08ccbfc7604f6d50579c3a4b25281ff1 (patch)
treeaacc8173cb2fc87edb5fde53c4bc83aa160c79fa /posix/testcases.h
parent6e9b72d3abab3236a2e079587ad5c5653d96e7bd (diff)
Update.
* posix/TESTS: Fix expected result for test cases with * with no leading expression.
Diffstat (limited to 'posix/testcases.h')
-rw-r--r--posix/testcases.h8
1 files changed, 4 insertions, 4 deletions
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"},