]> git.ipfire.org Git - thirdparty/glibc.git/blame - posix/PTESTS
Fix all the remaining misspellings -- BZ 25337
[thirdparty/glibc.git] / posix / PTESTS
CommitLineData
69623c0d
DD
1# Future self: the delimiter is an ASCII vertical bar, which is also a
2# REGEX special character, but hadn't already been used. Nearly every
3# other plain ASCII character had been used by a test. Characters
4# outside the plain ASCII range have a risk of being mangled by modern
5# editors. So, avoid using | in a test, or if needed, select a new
7f0d9e61 6# delimiter.
92040cbc 7# 2.8.2 Regular Expression General Requirement
69623c0d
DD
82|4|bb*|abbbc|
92|2|bb*|ababbbc|
107|9|A#*::|A:A#:qA::qA#::qA##::q|
111|5|A#*::|A##::A#::qA::qA#:q|
92040cbc
UD
12# 2.8.3.1.2 BRE Special Characters
13# GA108
69623c0d
DD
142|2|\.|a.c|
152|2|\[|a[c|
162|2|\\|a\c|
172|2|\*|a*c|
182|2|\^|a^c|
192|2|\$|a$c|
207|11|X\*Y\*8|Y*8X*8X*Y*8|
92040cbc 21# GA109
69623c0d
DD
222|2|[.]|a.c|
232|2|[[]|a[c|
24-1|-1|[[]|ac|
252|2|[\]|a\c|
261|1|[\a]|abc|
272|2|[\.]|a\.c|
282|2|[\.]|a.\c|
292|2|[*]|a*c|
302|2|[$]|a$c|
312|2|[X*Y8]|7*8YX|
92040cbc 32# GA110
69623c0d
DD
332|2|*|a*c|
343|4|*a|*b*a*c|
351|5|**9=|***9=9|
92040cbc 36# GA111
69623c0d
DD
371|1|^*|*bc|
38-1|-1|^*|a*c|
39-1|-1|^*|^*ab|
401|5|^**9=|***9=|
41-1|-1|^*5<*9|5<9*5<*9|
92040cbc 42# GA112
69623c0d
DD
432|3|\(*b\)|a*b|
44-1|-1|\(*b\)|ac|
451|6|A\(**9\)=|A***9=79|
92040cbc 46# GA113(1)
69623c0d
DD
471|3|\(^*ab\)|*ab|
48-1|-1|\(^*ab\)|^*ab|
49-1|-1|\(^*b\)|a*b|
50-1|-1|\(^*b\)|^*b|
648c1337 51### GA113(2) GNU regex implements GA113(1)
69623c0d
DD
52##-1|-1|\(^*ab\)|*ab|
53##-1|-1|\(^*ab\)|^*ab|
54##1|1|\(^*b\)|b|
55##1|3|\(^*b\)|^^b|
92040cbc 56# GA114
69623c0d
DD
571|3|a^b|a^b|
581|3|a\^b|a^b|
591|1|^^|^bc|
602|2|\^|a^c|
611|1|[c^b]|^abc|
621|1|[\^ab]|^ab|
632|2|[\^ab]|c\d|
64-1|-1|[^^]|^|
651|3|\(a^b\)|a^b|
661|3|\(a\^b\)|a^b|
672|2|\(\^\)|a^b|
92040cbc 68# GA115
69623c0d
DD
693|3|$$|ab$|
70-1|-1|$$|$ab|
712|3|$c|a$c|
722|2|[$]|a$c|
731|2|\$a|$a|
743|3|\$$|ab$|
752|6|A\([34]$[34]\)B|XA4$3BY|
c0016081 76# 2.8.3.1.3 Periods in BREs
92040cbc 77# GA116
69623c0d
DD
781|1|.|abc|
79-1|-1|.ab|abc|
801|3|ab.|abc|
811|3|a.b|a,b|
82-1|-1|.......|PqRs6|
831|7|.......|PqRs6T8|
92040cbc
UD
84# 2.8.3.2 RE Bracket Expression
85# GA118
69623c0d
DD
862|2|[abc]|xbyz|
87-1|-1|[abc]|xyz|
882|2|[abc]|xbay|
92040cbc 89# GA119
69623c0d
DD
902|2|[^a]|abc|
914|4|[^]cd]|cd]ef|
922|2|[^abc]|axyz|
93-1|-1|[^abc]|abc|
943|3|[^[.a.]b]|abc|
953|3|[^[=a=]b]|abc|
962|2|[^-ac]|abcde-|
972|2|[^ac-]|abcde-|
983|3|[^a-b]|abcde|
993|3|[^a-bd-e]|dec|
1002|2|[^---]|-ab|
10116|16|[^a-zA-Z0-9]|pqrstVWXYZ23579#|
92040cbc 102# GA120(1)
69623c0d
DD
1033|3|[]a]|cd]ef|
1041|1|[]-a]|a_b|
1053|3|[][.-.]-0]|ab0-]|
1061|1|[]^a-z]|string|
92040cbc 107# GA120(2)
69623c0d
DD
1084|4|[^]cd]|cd]ef|
1090|0|[^]]*|]]]]]]]]X|
1100|0|[^]]*|]]]]]]]]|
1119|9|[^]]\{1,\}|]]]]]]]]X|
112-1|-1|[^]]\{1,\}|]]]]]]]]|
92040cbc 113# GA120(3)
69623c0d
DD
1143|3|[c[.].]d]|ab]cd|
1152|8|[a-z]*[[.].]][A-Z]*|Abcd]DEFg|
92040cbc 116# GA121
69623c0d
DD
1172|2|[[.a.]b]|Abc|
1181|1|[[.a.]b]|aBc|
119-1|-1|[[.a.]b]|ABc|
1203|3|[^[.a.]b]|abc|
1213|3|[][.-.]-0]|ab0-]|
1223|3|[A-[.].]c]|ab]!|
92040cbc 123# GA122
69623c0d
DD
124-2|-2|[[.ch.]]|abc|
125-2|-2|[[.ab.][.CD.][.EF.]]|yZabCDEFQ9|
92040cbc 126# GA125
69623c0d
DD
1272|2|[[=a=]b]|Abc|
1281|1|[[=a=]b]|aBc|
129-1|-1|[[=a=]b]|ABc|
1303|3|[^[=a=]b]|abc|
92040cbc 131# GA126
813ec65a 132#W the expected result for [[:alnum:]]* is 2-7 which is wrong
69623c0d
DD
1330|0|[[:alnum:]]*| aB28gH|
1342|7|[[:alnum:]][[:alnum:]]*| aB28gH|
813ec65a 135#W the expected result for [^[:alnum:]]* is 2-5 which is wrong
69623c0d
DD
1360|0|[^[:alnum:]]*|2 ,\7fa|
1372|5|[^[:alnum:]][^[:alnum:]]*|2 ,\7fa|
813ec65a 138#W the expected result for [[:alpha:]]* is 2-5 which is wrong
69623c0d
DD
1390|0|[[:alpha:]]*| aBgH2|
1402|5|[[:alpha:]][[:alpha:]]*| aBgH2|
1411|6|[^[:alpha:]]*|2 8,\7fa|
1421|2|[[:blank:]]*| \r\7f|
1431|8|[^[:blank:]]*|aB28gH,\7f |
1441|2|[[:cntrl:]]*| \7f |
1451|8|[^[:cntrl:]]*|aB2 8gh,|
813ec65a 146#W the expected result for [[:digit:]]* is 2-3 which is wrong
69623c0d
DD
1470|0|[[:digit:]]*|a28|
1482|3|[[:digit:]][[:digit:]]*|a28|
1491|8|[^[:digit:]]*|aB gH,\7f|
1501|7|[[:graph:]]*|aB28gH, |
1511|3|[^[:graph:]]*| \7f,|
1521|2|[[:lower:]]*|agB|
1531|8|[^[:lower:]]*|B2 8H,\7fa|
1541|8|[[:print:]]*|aB2 8gH, |
1551|2|[^[:print:]]*| \7f |
813ec65a 156#W the expected result for [[:punct:]]* is 2-2 which is wrong
69623c0d
DD
1570|0|[[:punct:]]*|a,2|
1582|3|[[:punct:]][[:punct:]]*|a,,2|
1591|9|[^[:punct:]]*|aB2 8gH\7f|
1601|3|[[:space:]]*| \r\7f|
813ec65a 161#W the expected result for [^[:space:]]* is 2-9 which is wrong
69623c0d
DD
1620|0|[^[:space:]]*| aB28gH,\7f |
1632|9|[^[:space:]][^[:space:]]*| aB28gH,\7f |
813ec65a 164#W the expected result for [[:upper:]]* is 2-3 which is wrong
69623c0d
DD
1650|0|[[:upper:]]*|aBH2|
1662|3|[[:upper:]][[:upper:]]*|aBH2|
1671|8|[^[:upper:]]*|a2 8g,\7fB|
813ec65a 168#W the expected result for [[:xdigit:]]* is 2-5 which is wrong
69623c0d
DD
1690|0|[[:xdigit:]]*|gaB28h|
1702|5|[[:xdigit:]][[:xdigit:]]*|gaB28h|
813ec65a 171#W the expected result for [^[:xdigit:]]* is 2-7 which is wrong
69623c0d 1722|7|[^[:xdigit:]][^[:xdigit:]]*|a gH,\7f2|
92040cbc 173# GA127
69623c0d
DD
174-2|-2|[b-a]|abc|
1751|1|[a-c]|bbccde|
1762|2|[a-b]|-bc|
1773|3|[a-z0-9]|AB0|
1783|3|[^a-b]|abcde|
1793|3|[^a-bd-e]|dec|
1801|1|[]-a]|a_b|
1812|2|[+--]|a,b|
1822|2|[--/]|a.b|
1832|2|[^---]|-ab|
1843|3|[][.-.]-0]|ab0-]|
1853|3|[A-[.].]c]|ab]!|
1862|6|bc[d-w]xy|abchxyz|
92040cbc 187# GA129
69623c0d
DD
1881|1|[a-cd-f]|dbccde|
189-1|-1|[a-ce-f]|dBCCdE|
1902|4|b[n-zA-M]Y|absY9Z|
1912|4|b[n-zA-M]Y|abGY9Z|
92040cbc 192# GA130
69623c0d
DD
1933|3|[-xy]|ac-|
1942|4|c[-xy]D|ac-D+|
1952|2|[--/]|a.b|
1962|4|c[--/]D|ac.D+b|
1972|2|[^-ac]|abcde-|
1981|3|a[^-ac]c|abcde-|
1993|3|[xy-]|zc-|
2002|4|c[xy-]7|zc-786|
2012|2|[^ac-]|abcde-|
2022|4|a[^ac-]c|5abcde-|
2032|2|[+--]|a,b|
2042|4|a[+--]B|Xa,By|
2052|2|[^---]|-ab|
2064|6|X[^---]Y|X-YXaYXbY|
92040cbc
UD
207# 2.8.3.3 BREs Matching Multiple Characters
208# GA131
69623c0d
DD
2093|4|cd|abcdeabcde|
2101|2|ag*b|abcde|
211-1|-1|[a-c][e-f]|abcdef|
2123|4|[a-c][e-f]|acbedf|
2134|8|abc*XYZ|890abXYZ#*|
2144|9|abc*XYZ|890abcXYZ#*|
2154|15|abc*XYZ|890abcccccccXYZ#*|
216-1|-1|abc*XYZ|890abc*XYZ#*|
92040cbc 217# GA132
69623c0d
DD
2182|4|\(*bc\)|a*bc|
2191|2|\(ab\)|abcde|
2201|10|\(a\(b\(c\(d\(e\(f\(g\)h\(i\(j\)\)\)\)\)\)\)\)|abcdefghijk|
2213|8|43\(2\(6\)*0\)AB|654320ABCD|
2223|9|43\(2\(7\)*0\)AB|6543270ABCD|
2233|12|43\(2\(7\)*0\)AB|6543277770ABCD|
92040cbc 224# GA133
69623c0d
DD
2251|10|\(a\(b\(c\(d\(e\(f\(g\)h\(i\(j\)\)\)\)\)\)\)\)|abcdefghijk|
226-1|-1|\(a\(b\(c\(d\(e\(f\(g\)h\(i\(k\)\)\)\)\)\)\)\)|abcdefghijk|
92040cbc 227# GA134
69623c0d
DD
2282|4|\(bb*\)|abbbc|
2292|2|\(bb*\)|ababbbc|
2301|6|a\(.*b\)|ababbbc|
2311|2|a\(b*\)|ababbbc|
2321|20|a\(.*b\)c|axcaxbbbcsxbbbbbbbbc|
92040cbc 233# GA135
69623c0d 2341|7|\(a\(b\(c\(d\(e\)\)\)\)\)\4|abcdededede|
97fd3a30
UD
235#W POSIX does not really specify whether a\(b\)*c\1 matches acb.
236#W back references are supposed to expand to the last match, but what
237#W if there never was a match as in this case?
69623c0d
DD
238-1|-1|a\(b\)*c\1|acb|
2391|11|\(a\(b\(c\(d\(e\(f\(g\)h\(i\(j\)\)\)\)\)\)\)\)\9|abcdefghijjk|
92040cbc 240# GA136
97fd3a30
UD
241#W These two tests have the same problem as the test in GA135. No match
242#W of a subexpression, why should the back reference be usable?
243#W 1 2 a\(b\)*c\1 acb
69623c0d
DD
244#W 4 7 a\(b\(c\(d\(f\)*\)\)\)\4|xYzabcdePQRST
245-1|-1|a\(b\)*c\1|acb|
246-1|-1|a\(b\(c\(d\(f\)*\)\)\)\4|xYzabcdePQRST|
92040cbc 247# GA137
69623c0d
DD
248-2|-2|\(a\(b\)\)\3|foo|
249-2|-2|\(a\(b\)\)\(a\(b\)\)\5|foo|
92040cbc 250# GA138
69623c0d
DD
2511|2|ag*b|abcde|
2521|10|a.*b|abababvbabc|
2532|5|b*c|abbbcdeabbbbbbcde|
2542|5|bbb*c|abbbcdeabbbbbbcde|
2551|5|a\(b\)*c\1|abbcbbb|
256-1|-1|a\(b\)*c\1|abbdbd|
2570|0|\([a-c]*\)\1|abcacdef|
2581|6|\([a-c]*\)\1|abcabcabcd|
2591|2|a^*b|ab|
2601|5|a^*b|a^^^b|
92040cbc 261# GA139
69623c0d
DD
2621|2|a\{2\}|aaaa|
2631|7|\([a-c]*\)\{0,\}|aabcaab|
2641|2|\(a\)\1\{1,2\}|aabc|
2651|3|\(a\)\1\{1,2\}|aaaabc|
813ec65a 266#W the expression \(\(a\)\1\)\{1,2\} is ill-formed, using \2
69623c0d 2671|4|\(\(a\)\2\)\{1,2\}|aaaabc|
92040cbc 268# GA140
69623c0d
DD
2691|2|a\{2\}|aaaa|
270-1|-1|a\{2\}|abcd|
2710|0|a\{0\}|aaaa|
2721|64|a\{64\}|aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa|
92040cbc 273# GA141
69623c0d 2741|7|\([a-c]*\)\{0,\}|aabcaab|
813ec65a 275#W the expected result for \([a-c]*\)\{2,\} is failure which isn't correct
69623c0d
DD
2761|3|\([a-c]*\)\{2,\}|abcdefg|
2771|3|\([a-c]*\)\{1,\}|abcdefg|
278-1|-1|a\{64,\}|aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa|
92040cbc 279# GA142
69623c0d
DD
2801|3|a\{2,3\}|aaaa|
281-1|-1|a\{2,3\}|abcd|
2820|0|\([a-c]*\)\{0,0\}|foo|
2831|63|a\{1,63\}|aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa|
c0016081 284# 2.8.3.4 BRE Precedence
92040cbc 285# GA143
18e3dc56 286#W There are numerous bugs in the original version.
69623c0d
DD
2872|19|\^\[[[.].]]\\(\\1\\)\*\\{1,2\\}\$|a^[]\(\1\)*\{1,2\}$b|
2881|6|[[=*=]][[=\=]][[=]=]][[===]][[...]][[:punct:]]|*\]=.;|
2891|6|[$\(*\)^]*|$\()*^|
2901|1|[\1]|1|
2911|1|[\{1,2\}]|{|
813ec65a 292#W the expected result for \(*\)*\1* is 2-2 which isn't correct
69623c0d
DD
2930|0|\(*\)*\1*|a*b*11|
2942|3|\(*\)*\1*b|a*b*11|
813ec65a 295#W the expected result for \(a\(b\{1,2\}\)\{1,2\}\) is 1-5 which isn't correct
69623c0d
DD
2961|3|\(a\(b\{1,2\}\)\{1,2\}\)|abbab|
2971|5|\(a\(b\{1,2\}\)\)\{1,2\}|abbab|
2981|1|^\(^\(^a$\)$\)$|a|
2991|2|\(a\)\1$|aa|
3001|3|ab*|abb|
3011|4|ab\{2,4\}|abbbc|
92040cbc
UD
302# 2.8.3.5 BRE Expression Anchoring
303# GA144
69623c0d
DD
3041|1|^a|abc|
305-1|-1|^b|abc|
306-1|-1|^[a-zA-Z]|99Nine|
3071|4|^[a-zA-Z]*|Nine99|
92040cbc 308# GA145(1)
69623c0d
DD
3091|2|\(^a\)\1|aabc|
310-1|-1|\(^a\)\1|^a^abc|
3111|2|\(^^a\)|^a|
3121|1|\(^^\)|^^|
3131|3|\(^abc\)|abcdef|
314-1|-1|\(^def\)|abcdef|
648c1337 315### GA145(2) GNU regex implements GA145(1)
69623c0d
DD
316##-1|-1|\(^a\)\1|aabc|
317##1|4|\(^a\)\1|^a^abc|
318##-1|-1|\(^^a\)|^a|
319##1|2|\(^^\)|^^|
92040cbc 320# GA146
69623c0d
DD
3213|3|a$|cba|
322-1|-1|a$|abc|
3235|7|[a-z]*$|99ZZxyz|
813ec65a 324#W the expected result for [a-z]*$ is failure which isn't correct
69623c0d
DD
32510|9|[a-z]*$|99ZZxyz99|
3263|3|$$|ab$|
327-1|-1|$$|$ab|
3283|3|\$$|ab$|
92040cbc 329# GA147(1)
69623c0d
DD
330-1|-1|\(a$\)\1|bcaa|
331-1|-1|\(a$\)\1|ba$|
332-1|-1|\(ab$\)|ab$|
3331|2|\(ab$\)|ab|
3344|6|\(def$\)|abcdef|
335-1|-1|\(abc$\)|abcdef|
648c1337 336### GA147(2) GNU regex implements GA147(1)
69623c0d
DD
337##-1|-1|\(a$\)\1|bcaa|
338##2|5|\(a$\)\1|ba$a$|
339##-1|-1|\(ab$\)|ab|
340##1|3|\(ab$\)|ab$|
92040cbc 341# GA148
69623c0d
DD
3420|0|^$||
3431|3|^abc$|abc|
344-1|-1|^xyz$|^xyz^|
345-1|-1|^234$|^234$|
3461|9|^[a-zA-Z0-9]*$|2aA3bB9zZ|
347-1|-1|^[a-z0-9]*$|2aA3b#B9zZ|