]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Suppress tgmath3 tests if clang
authorStan Shebs <stanshebs@google.com>
Mon, 22 Jan 2018 21:04:00 +0000 (13:04 -0800)
committerStan Shebs <stanshebs@google.com>
Tue, 30 Apr 2019 03:05:48 +0000 (20:05 -0700)
math/Makefile

index 76e8edac19d1d45727aca91ad0791d33528f1689..01950d49972a5c8f3cb158cb86d46cd7eb914b6a 100644 (file)
@@ -361,9 +361,11 @@ tgmath3-macros = atan2 cbrt ceil copysign erf erfc exp2 expm1 fdim floor \
                 fromfp fromfpx ufromfp ufromfpx totalorder totalordermag \
                 scalb
 tgmath3-macro-tests = $(addprefix test-tgmath3-,$(tgmath3-macros))
+# Suppress these tests with clang for now, multiple issues
+ifneq ($(with-clang),yes)
 tests += $(tgmath3-macro-tests)
 generated += $(addsuffix .c,$(tgmath3-macro-tests))
-
+endif
 $(tgmath3-macro-tests:%=$(objpfx)%.o): CFLAGS += -fno-builtin
 
 $(foreach m,$(tgmath3-macros),\