[compiler-rt] r313379 - cfi: Enable ThinLTO tests on Windows.

Peter Collingbourne via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 15 11:55:35 PDT 2017


Author: pcc
Date: Fri Sep 15 11:55:35 2017
New Revision: 313379

URL: http://llvm.org/viewvc/llvm-project?rev=313379&view=rev
Log:
cfi: Enable ThinLTO tests on Windows.

We now avoid using absolute symbols on Windows (D37407 and D37408),
so this should work.

Fixes PR32770.

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

Modified:
    compiler-rt/trunk/test/cfi/CMakeLists.txt

Modified: compiler-rt/trunk/test/cfi/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/cfi/CMakeLists.txt?rev=313379&r1=313378&r2=313379&view=diff
==============================================================================
--- compiler-rt/trunk/test/cfi/CMakeLists.txt (original)
+++ compiler-rt/trunk/test/cfi/CMakeLists.txt Fri Sep 15 11:55:35 2017
@@ -33,8 +33,8 @@ if (APPLE)
   # FIXME: enable ThinLTO tests after fixing http://llvm.org/pr32741
   add_cfi_test_suites(False False)
 elseif(WIN32)
-  # FIXME: enable ThinLTO tests after fixing http://llvm.org/pr32770
   add_cfi_test_suites(True False)
+  add_cfi_test_suites(True True)
 else()
   if (CFI_SUPPORTED_ARCH)
     add_cfi_test_suites(False False)




More information about the llvm-commits mailing list