Fix hcttest file-check mode with /runIgnoredTests (#4980)

`hcttest.cmd file-check` runs the `CompilerTest::ManualFileCheckTest` test which is normally Ignored because it's only there to run a custom manual filecheck path.
A prior change removed the /runIgnoredTests argument, breaking the testing mode.  This change just adds it back.
This commit is contained in:
Tex Riddell 2023-01-30 19:40:52 -08:00 коммит произвёл GitHub
Родитель 852bd315bf
Коммит 7c47685d8f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -420,7 +420,7 @@ if exist "%HCT_EXTRAS%\hcttest-after.cmd" (
)
if "%TEST_MANUAL_FILE_CHECK%"=="1" (
call :runte clang-hlsl-tests.dll /p:"HlslDataDir=%HLSL_SRC_DIR%\tools\clang\test\HLSL" /name:CompilerTest::ManualFileCheckTest /p:"InputPath=%MANUAL_FILE_CHECK_PATH%"
call :runte clang-hlsl-tests.dll /p:"HlslDataDir=%HLSL_SRC_DIR%\tools\clang\test\HLSL" /name:CompilerTest::ManualFileCheckTest /runIgnoredTests /p:"InputPath=%MANUAL_FILE_CHECK_PATH%"
set RES_EXEC=!ERRORLEVEL!
)