Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/mbscasestr-tests @ 14675:d214c42cc3fe
exit: drop remaining clients
Anyone using EXIT_FAILURE needs to depend on stdlib, now that
the exit module is gone.
* modules/argmatch (Depends-on): Replace exit with stdlib.
* modules/copy-file (Depends-on): Likewise.
* modules/execute (Depends-on): Likewise.
* modules/exitfail (Depends-on): Likewise.
* modules/obstack (Depends-on): Likewise.
* modules/pagealign_alloc (Depends-on): Likewise.
* modules/pipe-filter-gi (Depends-on): Likewise.
* modules/pipe-filter-ii (Depends-on): Likewise.
* modules/savewd (Depends-on): Likewise.
* modules/spawn-pipe (Depends-on): Likewise.
* modules/wait-process (Depends-on): Likewise.
* modules/xsetenv (Depends-on): Likewise.
* modules/chdir-long (Depends-on): Add stdlib, for EXIT_FAILURE.
* modules/git-merge-changelog (Depends-on): Likewise.
* modules/long-options (Depends-on): Likewise.
* modules/pt_chown (Depends-on): Likewise.
* modules/sysexits (Depends-on): Likewise.
Signed-off-by: Eric Blake <eblake@redhat.com>
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Mon, 02 May 2011 11:59:00 -0600 |
parents | 413f5a66c55a |
children |
rev | line source |
---|---|
8134 | 1 Files: |
2 tests/test-mbscasestr1.c | |
3 tests/test-mbscasestr2.sh | |
4 tests/test-mbscasestr2.c | |
5 tests/test-mbscasestr3.sh | |
6 tests/test-mbscasestr3.c | |
7 tests/test-mbscasestr4.sh | |
8 tests/test-mbscasestr4.c | |
12496
a48d3d749ca5
Refactor common macros used in tests.
Bruno Haible <bruno@clisp.org>
parents:
9284
diff
changeset
|
9 tests/macros.h |
8134 | 10 m4/locale-fr.m4 |
11 m4/locale-tr.m4 | |
12 m4/locale-zh.m4 | |
13 m4/codeset.m4 | |
14 | |
15 Depends-on: | |
14335
413f5a66c55a
Avoid setlocale bugs in tests.
Bruno Haible <bruno@clisp.org>
parents:
12775
diff
changeset
|
16 setlocale |
8134 | 17 |
18 configure.ac: | |
19 gt_LOCALE_FR_UTF8 | |
20 gt_LOCALE_TR_UTF8 | |
21 gt_LOCALE_ZH_CN | |
22 | |
23 Makefile.am: | |
24 TESTS += test-mbscasestr1 test-mbscasestr2.sh test-mbscasestr3.sh test-mbscasestr4.sh | |
12775
03aab12b3f15
Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
Bruno Haible <bruno@clisp.org>
parents:
12496
diff
changeset
|
25 TESTS_ENVIRONMENT += LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' LOCALE_TR_UTF8='@LOCALE_TR_UTF8@' LOCALE_ZH_CN='@LOCALE_ZH_CN@' |
8134 | 26 check_PROGRAMS += test-mbscasestr1 test-mbscasestr2 test-mbscasestr3 test-mbscasestr4 |
27 |