From d1e38a6283aba93ce7a2ddb89e7c9315479d4a96 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Fri, 9 Oct 2015 01:18:27 +0000 Subject: [PATCH] Re-enable the coff-dwarf test on Windows Apparently system-windows was only a clang lit suite feature. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249797 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/lit.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/lit.cfg b/test/lit.cfg index 82799589ab4..f6f65646438 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -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') -- 2.34.1