annotate modules/mbsnrtowcs-tests @ 40231:9b3c79fdfe0b

strtod: fix clash with strtold Problem reported for RHEL 5 by Jesse Caldwell (Bug#34817). * lib/strtod.c (compute_minus_zero, minus_zero): Simplify by remving the macro / external variable, and having just a function. User changed. This avoids the need for an external variable that might clash.
author Paul Eggert <eggert@cs.ucla.edu>
date Mon, 11 Mar 2019 16:40:29 -0700
parents 413f5a66c55a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10933
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Files:
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 tests/test-mbsnrtowcs1.sh
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 tests/test-mbsnrtowcs2.sh
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 tests/test-mbsnrtowcs3.sh
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 tests/test-mbsnrtowcs4.sh
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 tests/test-mbsnrtowcs.c
12496
a48d3d749ca5 Refactor common macros used in tests.
Bruno Haible <bruno@clisp.org>
parents: 12489
diff changeset
7 tests/signature.h
a48d3d749ca5 Refactor common macros used in tests.
Bruno Haible <bruno@clisp.org>
parents: 12489
diff changeset
8 tests/macros.h
10933
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 m4/locale-fr.m4
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 m4/locale-ja.m4
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 m4/locale-zh.m4
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 m4/codeset.m4
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 Depends-on:
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 mbrtowc
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16 mbsinit
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 wctob
14335
413f5a66c55a Avoid setlocale bugs in tests.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
18 setlocale
10933
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 configure.ac:
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 gt_LOCALE_FR
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 gt_LOCALE_FR_UTF8
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 gt_LOCALE_JA
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 gt_LOCALE_ZH_CN
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 Makefile.am:
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 TESTS += test-mbsnrtowcs1.sh test-mbsnrtowcs2.sh test-mbsnrtowcs3.sh test-mbsnrtowcs4.sh
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 TESTS_ENVIRONMENT += \
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 LOCALE_FR='@LOCALE_FR@' \
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 LOCALE_JA='@LOCALE_JA@' \
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 LOCALE_ZH_CN='@LOCALE_ZH_CN@'
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 check_PROGRAMS += test-mbsnrtowcs
34c0f9f99c59 Tests for module 'mbsnrtowcs'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34