diff options
author | Stan Shebs <stanshebs@google.com> | 2018-01-22 13:04:00 -0800 |
---|---|---|
committer | Stan Shebs <stanshebs@google.com> | 2018-01-24 16:03:39 -0800 |
commit | b12e3e064c45f8d968f36d5ee619137c7c216ce6 (patch) | |
tree | cc41c9bf82fbc81168da34f06bc91a1fcf2e223d | |
parent | 4206f5d0893257cff11723482a38ef244a01fa39 (diff) | |
download | glibc-b12e3e064c45f8d968f36d5ee619137c7c216ce6.tar.gz glibc-b12e3e064c45f8d968f36d5ee619137c7c216ce6.tar.xz glibc-b12e3e064c45f8d968f36d5ee619137c7c216ce6.zip |
Suppress tgmath3 tests if clang
-rw-r--r-- | math/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 4c8703c71e..ec7d91ca3d 100644 --- a/math/Makefile +++ b/math/Makefile @@ -308,8 +308,11 @@ libm-test-incs = $(foreach f,$(libm-test-funcs-all),libm-test-$(f).inc) endif ifdef PYTHON +# Suppress these tests with clang for now, multiple issues +ifneq ($(with-clang),yes) tests += test-tgmath3 generated += test-tgmath3.c +endif CFLAGS-test-tgmath3.c += -fno-builtin $(objpfx)test-tgmath3.c: gen-tgmath-tests.py |