From 87e099c30d050e0d6847743e7c67f8f14e9bd11d Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Tue, 3 Sep 2024 11:22:17 -0700 Subject: [PATCH] Remove the extra set of testexecutiondirectory Per analysis of this file, the test execution directory is set and then it's reset to a random value. The initial value doesn't appear to be used so let's remove it to prevent confusion in the future. --- build/RunTestsOnHelix.cmd | 3 --- 1 file changed, 3 deletions(-) diff --git a/build/RunTestsOnHelix.cmd b/build/RunTestsOnHelix.cmd index 49cd4081a934..f55fcf1ead42 100644 --- a/build/RunTestsOnHelix.cmd +++ b/build/RunTestsOnHelix.cmd @@ -10,9 +10,6 @@ set PATH=%DOTNET_ROOT%;%PATH% set DOTNET_MULTILEVEL_LOOKUP=0 set TestFullMSBuild=%1 -set TestExecutionDirectory=%CD%\testExecutionDirectory -mkdir %TestExecutionDirectory% - REM Use powershell to call partical Arcade logic to get full framework msbuild path and assign it if "%TestFullMSBuild%"=="true" ( FOR /F "tokens=*" %%g IN ('PowerShell -ExecutionPolicy ByPass -File "%HELIX_CORRELATION_PAYLOAD%\t\eng\print-full-msbuild-path.ps1"') do (SET DOTNET_SDK_TEST_MSBUILD_PATH=%%g)