This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.23-54-g0800411


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  0800411f9c7da44641a0399428f678c020de0eda (commit)
      from  00db8bf4dbda2791e3a7a6666e6a6520f1c38534 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0800411f9c7da44641a0399428f678c020de0eda

commit 0800411f9c7da44641a0399428f678c020de0eda
Author: Roland McGrath <roland@hack.frob.com>
Date:   Fri Mar 4 13:27:25 2016 -0800

    Omit test-math-isinff when no C++ compiler.

diff --git a/ChangeLog b/ChangeLog
index 30785eb..3ccfd2c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2016-03-04  Roland McGrath  <roland@hack.frob.com>
 
+	* math/Makefile (tests): Add test-math-isinff only if $(CXX) is
+	nonempty.
+
 	* Makefile ($(objpfx)c++-types-check.out): Fix conditionalization
 	to test for empty $(CXX) rather than $(CXX) of "no".
 
diff --git a/math/Makefile b/math/Makefile
index 7d573a0..b952124 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -114,7 +114,6 @@ tests = test-matherr test-fenv atest-exp atest-sincos atest-exp2 basic-test \
 	test-nearbyint-except-2 test-signgam-uchar test-signgam-uchar-init \
 	test-signgam-uint test-signgam-uint-init test-signgam-ullong \
 	test-signgam-ullong-init test-nan-overflow test-nan-payload \
-	test-math-isinff \
 	$(tests-static)
 tests-static = test-fpucw-static test-fpucw-ieee-static \
 	       test-signgam-uchar-static test-signgam-uchar-init-static \
@@ -124,6 +123,10 @@ tests-static = test-fpucw-static test-fpucw-ieee-static \
 # distinct from `double'.
 test-longdouble-yes = test-ldouble test-ildoubl test-ldouble-finite
 
+ifneq (,$(CXX))
+tests += test-math-isinff
+endif
+
 ifneq (no,$(PERL))
 libm-vec-tests = $(addprefix test-,$(libmvec-tests))
 libm-tests = test-float test-double $(test-longdouble-$(long-double-fcts)) \

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog     |    3 +++
 math/Makefile |    5 ++++-
 2 files changed, 7 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]