mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-10 04:43:00 +03:00
test-regex failed on mingw; and I traced it in gdb to an instance of init_dfa() setting dfa->is_utf8 to 0 in spite of setlocale() claiming success for "en_US.UTF-8". test-wcwidth already has precedent for skipping utf-8 tests where the system (or gnulib setlocale replacement, in this case) lies about utf-8 support. * modules/regex-tests (Depends-on): Add localcharset. * tests/test-regex.c (main): Use it to skip test on mingw. Signed-off-by: Eric Blake <eblake@redhat.com>
14 lines
183 B
Plaintext
14 lines
183 B
Plaintext
Files:
|
|
tests/test-regex.c
|
|
tests/macros.h
|
|
|
|
Depends-on:
|
|
localcharset
|
|
|
|
configure.ac:
|
|
|
|
Makefile.am:
|
|
TESTS += test-regex
|
|
check_PROGRAMS += test-regex
|
|
test_regex_LDADD = $(LDADD) @LIBINTL@
|