diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/rxspencer/tests | 6 | ||||
-rw-r--r-- | posix/tst-rxspencer.c | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/posix/rxspencer/tests b/posix/rxspencer/tests index acd4623c74..8e93133d24 100644 --- a/posix/rxspencer/tests +++ b/posix/rxspencer/tests @@ -295,7 +295,8 @@ a[[.x. &C EBRACK a[[.x.] &C EBRACK a[[.x.]] & ax ax a[[.x,.]] &C ECOLLATE -# XXX Doesn't work yet. +# This test is invalid. "one" is no collating symbol in any standardized +# locale. # a[[.one.]]b & a1b a1b a[[.notdef.]]b &C ECOLLATE a[[.].]]b & a]b a]b @@ -327,7 +328,8 @@ a[[=b &C EBRACK a[[=b= &C EBRACK a[[=b=] &C EBRACK a[[=b,=]] &C ECOLLATE -# XXX Doesn't work yet. +# This test is invalid. "one" is no collating symbol in any standardized +# locale. #a[[=one=]]b & a1b a1b # complexities diff --git a/posix/tst-rxspencer.c b/posix/tst-rxspencer.c index eed3e1820b..a04791c1cc 100644 --- a/posix/tst-rxspencer.c +++ b/posix/tst-rxspencer.c @@ -384,7 +384,7 @@ main (int argc, char **argv) {NULL, 0, NULL, 0 } }; - while (getopt_long (argc, argv, "u", options, NULL) >= 0); + while (getopt_long (argc, argv, "", options, NULL) >= 0); if (optind + 1 != argc) { |