From 151c397d94d963d53351e16c8767e3aef1c96554 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Wed, 14 Aug 2024 13:23:16 -0700 Subject: [PATCH] utils: enable LLD testing on Windows Enable the lld test suite on Windows. Although we don't get much of the LLVM test suite coverage, this is a small step towards getting the testing coverage that we need for stability. --- utils/build-windows-toolchain.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/build-windows-toolchain.bat b/utils/build-windows-toolchain.bat index 6b543c56ed4ba..42f3309fe895f 100644 --- a/utils/build-windows-toolchain.bat +++ b/utils/build-windows-toolchain.bat @@ -60,7 +60,7 @@ set TMPDIR=%BuildRoot%\tmp set NINJA_STATUS=[%%f/%%t][%%p][%%es] :: Build the -Test argument, if any, by subtracting skipped tests -set TestArg=-Test swift,dispatch,foundation,xctest, +set TestArg=-Test lld,swift,dispatch,foundation,xctest, for %%I in (%SKIP_TESTS%) do (call set TestArg=%%TestArg:%%I,=%%) if "%TestArg:~-1%"=="," (set TestArg=%TestArg:~0,-1%) else (set TestArg= )