[llvm] r249797 - Re-enable the coff-dwarf test on Windows
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 8 18:18:28 PDT 2015
Author: rnk
Date: Thu Oct 8 20:18:27 2015
New Revision: 249797
URL: http://llvm.org/viewvc/llvm-project?rev=249797&view=rev
Log:
Re-enable the coff-dwarf test on Windows
Apparently system-windows was only a clang lit suite feature.
Modified:
llvm/trunk/test/lit.cfg
Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=249797&r1=249796&r2=249797&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Thu Oct 8 20:18:27 2015
@@ -443,6 +443,10 @@ if 'darwin' == sys.platform:
config.available_features.add('fma3')
sysctl_cmd.wait()
+if platform.system() in ['Windows']:
+ # For tests that require Windows to run.
+ config.available_features.add('system-windows')
+
# .debug_frame is not emitted for targeting Windows x64.
if not re.match(r'^x86_64.*-(mingw32|windows-gnu|win32)', config.target_triple):
config.available_features.add('debug_frame')
More information about the llvm-commits
mailing list