Mercurial > hg > octave-shane > gnulib-hg
annotate modules/mbrtowc-tests @ 11658:8b1dcb465dff
tests: add test for bogus NULL definition
* tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
* tests/test-stdlib.c: Likewise.
* tests/test-string.c: Likewise.
* tests/test-locale.c: Likewise.
* tests/test-unistd.c: Likewise.
* modules/stdio-tests (Depends-on): Add verify.
* modules/stdlib-tests (Depends-on): Likewise.
* modules/string-tests (Depends-on): Likewise.
* modules/locale-tests (Depends-on): Likewise.
* modules/unistd-tests (Depends-on): Likewise.
Signed-off-by: Eric Blake <ebb9@byu.net>
author | Eric Blake <ebb9@byu.net> |
---|---|
date | Fri, 26 Jun 2009 08:00:28 -0600 |
parents | 9ad8bcddd5f9 |
children | 33ab12a7cea2 |
rev | line source |
---|---|
10907 | 1 Files: |
2 tests/test-mbrtowc1.sh | |
3 tests/test-mbrtowc2.sh | |
4 tests/test-mbrtowc3.sh | |
5 tests/test-mbrtowc4.sh | |
6 tests/test-mbrtowc.c | |
7 m4/locale-fr.m4 | |
8 m4/locale-ja.m4 | |
9 m4/locale-zh.m4 | |
10 m4/codeset.m4 | |
11 | |
12 Depends-on: | |
13 mbsinit | |
14 wctob | |
15 | |
16 configure.ac: | |
17 gt_LOCALE_FR | |
18 gt_LOCALE_FR_UTF8 | |
19 gt_LOCALE_JA | |
20 gt_LOCALE_ZH_CN | |
21 | |
22 Makefile.am: | |
23 TESTS += test-mbrtowc1.sh test-mbrtowc2.sh test-mbrtowc3.sh test-mbrtowc4.sh | |
24 TESTS_ENVIRONMENT += \ | |
25 EXEEXT='@EXEEXT@' \ | |
26 LOCALE_FR='@LOCALE_FR@' \ | |
27 LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \ | |
28 LOCALE_JA='@LOCALE_JA@' \ | |
29 LOCALE_ZH_CN='@LOCALE_ZH_CN@' | |
30 check_PROGRAMS += test-mbrtowc | |
31 |