[libcxx] [test] Fix the include_as_c.sh.cpp test in MSVC configurations
authorMartin Storsjö <martin@martin.st>
Mon, 31 May 2021 08:35:01 +0000 (08:35 +0000)
committerMartin Storsjö <martin@martin.st>
Mon, 31 May 2021 19:13:22 +0000 (22:13 +0300)
Avoid including a header that is known not to work with clang in MSVC
mode when compiling as C.

(Alternatively, this could be something like "XFAIL: clang && msvc",
but I think it's more useful to actually check the rest of the test
instead of expecting the whole test to fail.)

Differential Revision: https://reviews.llvm.org/D103400

libcxx/test/libcxx/include_as_c.sh.cpp

index bbdcd02..3fc4f1f 100644 (file)
@@ -14,8 +14,6 @@
 // file as C, but we're passing C++ flags on the command-line.
 // UNSUPPORTED: gcc
 
-// XFAIL: LIBCXX-WINDOWS-FIXME
-
 // Test that the C wrapper headers can be included when compiling them as C.
 
 // NOTE: It's not common or recommended to have libc++ in the header search
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <tgmath.h>
+// The clang-shipped tgmath.h header doesn't work with MSVC/UCRT's complex
+// headers in C mode, see PR46207.
+#ifndef _MSC_VER
+#    include <tgmath.h>
+#endif
 #include <wchar.h>
 #include <wctype.h>