summaryrefslogtreecommitdiff
path: root/posix/ptestcases.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-11-13 01:04:26 +0000
committerUlrich Drepper <drepper@redhat.com>2003-11-13 01:04:26 +0000
commit813ec65a4d69dcf9b2ecaf42395a4ba62dd2d33c (patch)
tree3227bd5dc92eb6fc1e3cfaa8cac7107997e439d8 /posix/ptestcases.h
parent14744156b935eb7fb1a2013fdc3ce6613defa94d (diff)
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/ptestcases.h')
-rw-r--r--posix/ptestcases.h56
1 files changed, 40 insertions, 16 deletions
diff --git a/posix/ptestcases.h b/posix/ptestcases.h
index 7e98cb2279..39e3494313 100644
--- a/posix/ptestcases.h
+++ b/posix/ptestcases.h
@@ -118,15 +118,23 @@
{ -1, -1, "[[=a=]b]", "ABc", },
{ 3, 3, "[^[=a=]b]", "abc", },
{ 0, 0, "GA126", NULL, },
- { 2, 7, "[[:alnum:]]*", " aB28gH", },
- { 2, 5, "[^[:alnum:]]*", "2 ,a", },
- { 2, 5, "[[:alpha:]]*", " aBgH2", },
+ { 0, 0, NULL, "the expected result for [[:alnum:]]* is 2-7 which is wrong" },
+ { 0, 0, "[[:alnum:]]*", " aB28gH", },
+ { 2, 7, "[[:alnum:]][[:alnum:]]*", " aB28gH", },
+ { 0, 0, NULL, "the expected result for [^[:alnum:]]* is 2-5 which is wrong" },
+ { 0, 0, "[^[:alnum:]]*", "2 ,a", },
+ { 2, 5, "[^[:alnum:]][^[:alnum:]]*", "2 ,a", },
+ { 0, 0, NULL, "the expected result for [[:alpha:]]* is 2-5 which is wrong" },
+ { 0, 0, "[[:alpha:]]*", " aBgH2", },
+ { 2, 5, "[[:alpha:]][[:alpha:]]*", " aBgH2", },
{ 1, 6, "[^[:alpha:]]*", "2 8,a", },
{ 1, 2, "[[:blank:]]*", " \r", },
{ 1, 8, "[^[:blank:]]*", "aB28gH, ", },
{ 1, 2, "[[:cntrl:]]*", "  ", },
{ 1, 8, "[^[:cntrl:]]*", "aB2 8gh,", },
- { 2, 3, "[[:digit:]]*", "a28", },
+ { 0, 0, NULL, "the expected result for [[:digit:]]* is 2-3 which is wrong" },
+ { 0, 0, "[[:digit:]]*", "a28", },
+ { 2, 3, "[[:digit:]][[:digit:]]*", "a28", },
{ 1, 8, "[^[:digit:]]*", "aB gH,", },
{ 1, 7, "[[:graph:]]*", "aB28gH, ", },
{ 1, 3, "[^[:graph:]]*", " ,", },
@@ -134,14 +142,23 @@
{ 1, 8, "[^[:lower:]]*", "B2 8H,a", },
{ 1, 8, "[[:print:]]*", "aB2 8gH, ", },
{ 1, 2, "[^[:print:]]*", "  ", },
- { 2, 2, "[[:punct:]]*", "a,2", },
+ { 0, 0, NULL, "the expected result for [[:punct:]]* is 2-2 which is wrong" },
+ { 0, 0, "[[:punct:]]*", "a,2", },
+ { 2, 3, "[[:punct:]][[:punct:]]*", "a,,2", },
{ 1, 9, "[^[:punct:]]*", "aB2 8gH", },
{ 1, 3, "[[:space:]]*", " \r", },
- { 2, 9, "[^[:space:]]*", " aB28gH, ", },
- { 2, 3, "[[:upper:]]*", "aBH2", },
+ { 0, 0, NULL, "the expected result for [^[:space:]]* is 2-9 which is wrong" },
+ { 0, 0, "[^[:space:]]*", " aB28gH, ", },
+ { 2, 9, "[^[:space:]][^[:space:]]*", " aB28gH, ", },
+ { 0, 0, NULL, "the expected result for [[:upper:]]* is 2-3 which is wrong" },
+ { 0, 0, "[[:upper:]]*", "aBH2", },
+ { 2, 3, "[[:upper:]][[:upper:]]*", "aBH2", },
{ 1, 8, "[^[:upper:]]*", "a2 8g,B", },
- { 2, 5, "[[:xdigit:]]*", "gaB28h", },
- { 2, 7, "[^[:xdigit:]]*", "a gH,2", },
+ { 0, 0, NULL, "the expected result for [[:xdigit:]]* is 2-5 which is wrong" },
+ { 0, 0, "[[:xdigit:]]*", "gaB28h", },
+ { 2, 5, "[[:xdigit:]][[:xdigit:]]*", "gaB28h", },
+ { 0, 0, NULL, "the expected result for [^[:xdigit:]]* is 2-7 which is wrong" },
+ { 2, 7, "[^[:xdigit:]][^[:xdigit:]]*", "a gH,2", },
{ 0, 0, "GA127", NULL, },
{ -2, -2, "[b-a]", "abc", },
{ 1, 1, "[a-c]", "bbccde", },
@@ -227,8 +244,9 @@
{ 1, 2, "a\\{2\\}", "aaaa", },
{ 1, 7, "\\([a-c]*\\)\\{0,\\}", "aabcaab", },
{ 1, 2, "\\(a\\)\\1\\{1,2\\}", "aabc", },
- { 1, 3, "\\(a\\)010\\{1,2\\}", "aaaabc", },
- { 1, 4, "\\(\\(a\\)\\1\\)\\{1,2\\}", "aaaabc", },
+ { 1, 3, "\\(a\\)\\1\\{1,2\\}", "aaaabc", },
+ { 0, 0, NULL, "the expression \\(\\(a\\)\\1\\)\\{1,2\\} is ill-formed, using \\2" },
+ { 1, 4, "\\(\\(a\\)\\2\\)\\{1,2\\}", "aaaabc", },
{ 0, 0, "GA140", NULL, },
{ 1, 2, "a\\{2\\}", "aaaa", },
{ -1, -1, "a\\{2\\}", "abcd", },
@@ -236,7 +254,8 @@
{ 1, 64, "a\\{64\\}", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", },
{ 0, 0, "GA141", NULL, },
{ 1, 7, "\\([a-c]*\\)\\{0,\\}", "aabcaab", },
- { -1, -1, "\\([a-c]*\\)\\{2,\\}", "abcdefg", },
+ { 0, 0, NULL, "the expected result for \\([a-c]*\\)\\{2,\\} is failure which isn't correct" },
+ { 1, 3, "\\([a-c]*\\)\\{2,\\}", "abcdefg", },
{ 1, 3, "\\([a-c]*\\)\\{1,\\}", "abcdefg", },
{ -1, -1, "a\\{64,\\}", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", },
{ 0, 0, "GA142", NULL, },
@@ -248,11 +267,15 @@
{ 0, 0, "GA143", NULL, },
{ 2, 20, "\\^\\[[[.].]]\\\\(\\\\1\\\\)\\\\*\\\\{1,2\\\\}\\$", "a^[]\\(1\\)\\*\\{1,2\\}$b", },
{ 1, 6, "[[=*=]][[=\\=]][[=]=]][[===]][[...]][[:punct:]]", "*\\]=.;", },
- { 1, 6, "[$\\(*\\)1]*", "$\\()*^", },
+ { 1, 6, "[$\\(*\\)^]*", "$\\()*^", },
{ 1, 1, "[\\1]", "1", },
{ 1, 1, "[\\{1,2\\}]", "{", },
- { 2, 2, "\\(*\\)*\\1*", "a*b*11", },
- { 1, 5, "\\(a\\(b\\{1,2\\}\\)\\{1,2\\}\\)", "abbab", },
+ { 0, 0, NULL, "the expected result for \\(*\\)*\\1* is 2-2 which isn't correct" },
+ { 0, 0, "\\(*\\)*\\1*", "a*b*11", },
+ { 2, 3, "\\(*\\)*\\1*b", "a*b*11", },
+ { 0, 0, NULL, "the expected result for \\(a\\(b\\{1,2\\}\\)\\{1,2\\}\\) is 1-5 which isn't correct" },
+ { 1, 3, "\\(a\\(b\\{1,2\\}\\)\\{1,2\\}\\)", "abbab", },
+ { 1, 5, "\\(a\\(b\\{1,2\\}\\)\\)\\{1,2\\}", "abbab", },
{ 1, 1, "^\\(^\\(^a$\\)$\\)$", "a", },
{ 1, 2, "\\(a\\)\\1$", "aa", },
{ 1, 3, "ab*", "abb", },
@@ -274,7 +297,8 @@
{ 3, 3, "a$", "cba", },
{ -1, -1, "a$", "abc", },
{ 5, 7, "[a-z]*$", "99ZZxyz", },
- { 9, 9, "[a-z]*$", "99ZZxyz99", },
+ { 0, 0, NULL, "the expected result for [a-z]*$ is failure which isn't correct" },
+ { 10, 9, "[a-z]*$", "99ZZxyz99", },
{ 3, 3, "$$", "ab$", },
{ -1, -1, "$$", "$ab", },
{ 3, 3, "\\$$", "ab$", },