Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions utils/hct/hcttest.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ echo cmd - run command line tool tests.
echo dxilconv - run dxilconv tests
echo v - run the subset of clang tests that are verified-based.
echo exec - run execution tests.
echo exec-future - run execution tests for future releases.
echo exec-future run execution tests for future releases.
echo extras - run hcttest-extras tests.
echo noexec - all except exec and extras tests.
echo.
Expand Down Expand Up @@ -582,8 +582,8 @@ if not defined HLSL_TAEF_DIR (
) else (
set TE="%HLSL_TAEF_DIR%\%BUILD_ARCH_DIR%\te"
)
echo %TE% /miniDumpOnCrash /unicodeOutput:false /outputFolder:%TEST_DIR% %LOG_FILTER% %PARALLEL_OPTION% %TEST_DIR%\%*
call %TE% /miniDumpOnCrash /unicodeOutput:false /outputFolder:%TEST_DIR% %LOG_FILTER% %PARALLEL_OPTION% %TEST_DIR%\%*
echo %TE% /unicodeOutput:false /outputFolder:%TEST_DIR% %LOG_FILTER% %PARALLEL_OPTION% %TEST_DIR%\%*
call %TE% /unicodeOutput:false /outputFolder:%TEST_DIR% %LOG_FILTER% %PARALLEL_OPTION% %TEST_DIR%\%*

if errorlevel 1 (
call :showtesample %*
Expand Down
2 changes: 1 addition & 1 deletion utils/lit/lit/formats/taef.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def execute(self, test, litConfig):

cmd = [self.te, test_dll, '/inproc',
'/select:', select_filter,
'/miniDumpOnCrash', '/unicodeOutput:false',
'/unicodeOutput:false',
str.format('/outputFolder:{}', self.test_path)]
cmd.extend(self.extra_params)

Expand Down
Loading