diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-06-04 04:59:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-06-04 04:59:36 +0000 |
commit | 33e63e7993d50ca4a8409aefaccf247301c0e8f2 (patch) | |
tree | 6c60be6ab1d7d156db70e397d07c2ef750eba73b /posix/Makefile | |
parent | fdc02996d41d0b74e45e29c97c9d8cd02a8cb9f7 (diff) | |
download | glibc-33e63e7993d50ca4a8409aefaccf247301c0e8f2.tar.gz glibc-33e63e7993d50ca4a8409aefaccf247301c0e8f2.tar.xz glibc-33e63e7993d50ca4a8409aefaccf247301c0e8f2.zip |
* posix/regex_internal.c (re_string_skip_chars): If no character has
been converted at all, set *last_wc to WEOF. If mbrtowc failed, set wc to the byte which couldn't be converted. (re_string_reconstruct): Don't clear valid_raw_len before calling re_string_skip_chars. If wc is WEOF after re_string_skip_chars, set tip_context using re_string_context_at. * posix/Makefile: Add rules to build and run bug-regex25 test. * posix/bug-regex25.c: New test.
Diffstat (limited to 'posix/Makefile')
-rw-r--r-- | posix/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/posix/Makefile b/posix/Makefile index 418e1cbe5f..a9d99102ae 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -81,7 +81,7 @@ tests := tstgetopt testfnm runtests runptests \ bug-regex13 bug-regex14 bug-regex15 bug-regex16 \ bug-regex17 bug-regex18 bug-regex19 bug-regex20 \ bug-regex21 bug-regex22 bug-regex23 bug-regex24 \ - tst-nice tst-nanosleep tst-regex2 \ + bug-regex25 tst-nice tst-nanosleep tst-regex2 \ transbug tst-rxspencer tst-pcre tst-boost \ bug-ga1 tst-vfork1 tst-vfork2 tst-waitid \ tst-getaddrinfo2 bug-glob1 bug-glob2 tst-sysconf \ @@ -188,6 +188,7 @@ bug-regex19-ENV = LOCPATH=$(common-objpfx)localedata bug-regex20-ENV = LOCPATH=$(common-objpfx)localedata bug-regex22-ENV = LOCPATH=$(common-objpfx)localedata bug-regex23-ENV = LOCPATH=$(common-objpfx)localedata +bug-regex25-ENV = LOCPATH=$(common-objpfx)localedata tst-rxspencer-ARGS = --utf8 rxspencer/tests tst-rxspencer-ENV = LOCPATH=$(common-objpfx)localedata tst-pcre-ARGS = PCRE.tests |