annotate modules/math-c++-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 44844e6a23a1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13082
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Files:
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 tests/test-math-c++.cc
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 tests/test-math-c++2.cc
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 tests/signature.h
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 Status:
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 c++-test
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 Depends-on:
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 ansi-c++-opt
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 configure.ac:
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 Makefile.am:
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 if ANSICXX
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16 TESTS += test-math-c++
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 check_PROGRAMS += test-math-c++
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18 test_math_c___SOURCES = test-math-c++.cc test-math-c++2.cc
15917
2a90104cab5b rint: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 15913
diff changeset
19 # These link dependencies are needed on IRIX 6.5 with cc.
15920
44844e6a23a1 New module 'rintl'.
Bruno Haible <bruno@clisp.org>
parents: 15917
diff changeset
20 test_math_c___LDADD = $(LDADD) $(COPYSIGNL_LIBM) $(RINT_LIBM) $(RINTL_LIBM)
13082
d7eed0b7ef06 Split C++ tests into separate tests modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 endif