Skip to content

Commit 33d093c

Browse files
committed
address Damyan
1 parent 9009a81 commit 33d093c

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,28 +48,28 @@ stages:
4848
displayName: 'DXIL Execution Tests'
4949
- script: |
5050
call utils\hct\hctstart.cmd %HLSL_SRC_DIR% %HLSL_BLD_DIR%
51-
call utils\hct\hcttest.cmd -$(configuration) compat-suite 2021_12_08
51+
call utils\hct\hcttest.cmd -$(configuration) compat-suite v1.6.2112
5252
displayName: 'DXIL Compat Suite Tests (1.6 release)'
5353
condition: succeededOrFailed()
5454
- script: |
5555
call utils\hct\hctstart.cmd %HLSL_SRC_DIR% %HLSL_BLD_DIR%
56-
call utils\hct\hcttest.cmd -$(configuration) compat-suite 2023_08_14
56+
call utils\hct\hcttest.cmd -$(configuration) compat-suite v1.7.2308
5757
displayName: 'DXIL Compat Suite Tests (1.7 release)'
5858
condition: succeededOrFailed()
5959
- script: |
6060
call utils\hct\hctstart.cmd %HLSL_SRC_DIR% %HLSL_BLD_DIR%
61-
call utils\hct\hcttest.cmd -$(configuration) compat-suite 2025_02_20
61+
call utils\hct\hcttest.cmd -$(configuration) compat-suite v1.8.2502
6262
displayName: 'DXIL Compat Suite Tests (1.8 release)'
6363
condition: succeededOrFailed()
6464
- script: |
6565
call utils\hct\hctstart.cmd %HLSL_SRC_DIR% %HLSL_BLD_DIR%
66-
call utils\hct\hcttest.cmd -$(configuration) compat-suite 2025_07_14
66+
call utils\hct\hcttest.cmd -$(configuration) compat-suite v1.8.2505.1
6767
displayName: 'DXIL Compat Suite Tests (1.8 point release)'
6868
condition: succeededOrFailed()
6969
7070
7171
- job: Nix
72-
timeoutInMinutes: 180
72+
timeoutInMinutes: 165
7373

7474
variables:
7575
macOS: macOS-latest

utils/hct/hcttest.cmd

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -334,19 +334,19 @@ if "%TEST_USE_LIT%"=="1" (
334334
cmake --build %HLSL_BLD_DIR% --config %BUILD_CONFIG% --target check-clang
335335
set RES_CLANG=!ERRORLEVEL!
336336
)
337-
if "!TEST_COMPAT_SUITE!"=="2021_12_08" (
337+
if "!TEST_COMPAT_SUITE!"=="v1.6.2112" (
338338
cmake --build %HLSL_BLD_DIR% --config %BUILD_CONFIG% --target check-dxilcompat-dxc_2021_12_08
339339
set RES_COMPAT_1_6=!ERRORLEVEL!
340340
)
341-
if "!TEST_COMPAT_SUITE!"=="2023_08_14" (
341+
if "!TEST_COMPAT_SUITE!"=="v1.7.2308" (
342342
cmake --build %HLSL_BLD_DIR% --config %BUILD_CONFIG% --target check-dxilcompat-dxc_2023_08_14
343343
set RES_COMPAT_1_7=!ERRORLEVEL!
344344
)
345-
if "!TEST_COMPAT_SUITE!"=="2025_02_20" (
345+
if "!TEST_COMPAT_SUITE!"=="v1.8.2502" (
346346
cmake --build %HLSL_BLD_DIR% --config %BUILD_CONFIG% --target check-dxilcompat-dxc_2025_02_20
347347
set RES_COMPAT_1_8=!ERRORLEVEL!
348348
)
349-
if "!TEST_COMPAT_SUITE!"=="2025_07_14" (
349+
if "!TEST_COMPAT_SUITE!"=="v1.8.2505.1" (
350350
cmake --build %HLSL_BLD_DIR% --config %BUILD_CONFIG% --target check-dxilcompat-dxc_2025_07_14
351351
set RES_COMPAT_1_8_POINT=!ERRORLEVEL!
352352
)
@@ -516,10 +516,10 @@ if "%TEST_EXEC%"=="1" (
516516
call :check_result "hcttest-extras tests" %RES_EXTRAS%
517517
call :check_result "hcttest-after script" %RES_HCTTEST_AFTER%
518518
call :check_result "dxilconv tests" %RES_DXILCONV%
519-
call :check_result "compat-suite 1.6 2021_12_08 tests" %RES_COMPAT_1_6%
520-
call :check_result "compat-suite 1.7 2023_08_14 tests" %RES_COMPAT_1_7%
521-
call :check_result "compat-suite 1.8 2025_02_20 tests" %RES_COMPAT_1_8%
522-
call :check_result "compat-suite 1.8 2025_07_14 point-release tests" %RES_COMPAT_1_8_POINT%
519+
call :check_result "compat-suite v1.6.2112 tests" %RES_COMPAT_1_6%
520+
call :check_result "compat-suite v1.7.2308 tests" %RES_COMPAT_1_7%
521+
call :check_result "compat-suite v1.8.2502 tests" %RES_COMPAT_1_8%
522+
call :check_result "compat-suite v1.8.2505.1 tests" %RES_COMPAT_1_8_POINT%
523523

524524
set EXIT_CODE=%TESTS_FAILED%
525525
if not "%TESTS_PASSED%"=="0" (
@@ -569,7 +569,7 @@ echo clang - run clang tests.
569569
echo file-check - run file-check test on single file.
570570
echo - hcttest file-check "..\CodeGenHLSL\shader-compat-suite\lib_arg_flatten\lib_arg_flatten.hlsl"
571571
echo compat-suite - run compat-suite test.
572-
echo - hcttest compat-suite ^(2021_12_08 ^| 2023_08_14 ^| 2025_02_20 ^| 2025_07_14^)
572+
echo - hcttest compat-suite ^(v1.6.2112 ^| v1.7.2308 ^| v1.8.2505 ^| v1.8.2505.1^)
573573
echo cmd - run command line tool tests.
574574
echo dxilconv - run dxilconv tests
575575
echo v - run the subset of clang tests that are verified-based.

0 commit comments

Comments
 (0)