Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/frexpl-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 | 108bbfd6f03b |
children | 328819af1c02 |
rev | line source |
---|---|
8498 | 1 Files: |
2 tests/test-frexpl.c | |
13834
108bbfd6f03b
frexp, tests: work around ICC bug with -zero
Eric Blake <eblake@redhat.com>
parents:
12521
diff
changeset
|
3 tests/minus-zero.h |
11224
5aa57cee93aa
avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
Eric Blake <ebb9@byu.net>
parents:
10810
diff
changeset
|
4 tests/nan.h |
12496
a48d3d749ca5
Refactor common macros used in tests.
Bruno Haible <bruno@clisp.org>
parents:
12489
diff
changeset
|
5 tests/signature.h |
a48d3d749ca5
Refactor common macros used in tests.
Bruno Haible <bruno@clisp.org>
parents:
12489
diff
changeset
|
6 tests/macros.h |
8498 | 7 |
8 Depends-on: | |
8531 | 9 fpucw |
8545
418f381347dc
Work around IRIX 6.5 cc compiler bug, which simplifies x != x to false.
Bruno Haible <bruno@clisp.org>
parents:
8531
diff
changeset
|
10 isnanl-nolibm |
8654
a2bc90a7b7aa
Test also the sign bit of zero results.
Bruno Haible <bruno@clisp.org>
parents:
8545
diff
changeset
|
11 signbit |
10601
ca053fa79cd3
Use a more portable replacement expression for -0.0L.
Bruno Haible <bruno@clisp.org>
parents:
8654
diff
changeset
|
12 float |
8498 | 13 |
14 configure.ac: | |
15 | |
16 Makefile.am: | |
17 TESTS += test-frexpl | |
18 check_PROGRAMS += test-frexpl | |
10810
2d3e8b43c9f4
Avoid possible link error.
Bruno Haible <bruno@clisp.org>
parents:
10601
diff
changeset
|
19 test_frexpl_LDADD = $(LDADD) @FREXPL_LIBM@ |