This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
debugger_tests/ConfigFilesGenerators Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -316,9 +316,9 @@ if errorlevel 1 (
316316
317317REM Prepare the Test Drop
318318REM Cleans any NI from the last run
319- powershell " -NoProfile Get-ChildItem -path %__TestWorkingDir% -Include '*.ni.*' -Recurse -Force | Remove-Item -force"
319+ powershell -NoProfile " Get-ChildItem -path %__TestWorkingDir% -Include '*.ni.*' -Recurse -Force | Remove-Item -force"
320320REM Cleans up any lock folder used for synchronization from last run
321- powershell " -NoProfile Get-ChildItem -path %__TestWorkingDir% -Include 'lock' -Recurse -Force | where {$_.Attributes -eq 'Directory'}| Remove-Item -force -Recurse"
321+ powershell -NoProfile " Get-ChildItem -path %__TestWorkingDir% -Include 'lock' -Recurse -Force | where {$_.Attributes -eq 'Directory'}| Remove-Item -force -Recurse"
322322
323323set CORE_ROOT = %__TestBinDir% \Tests\Core_Root
324324set CORE_ROOT_STAGE = %__TestBinDir% \Tests\Core_Root_Stage
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ if exist %__ConfigFileName% (
3333)
3434
3535:: powershell "Get-Content %__TemplateFileName% -replace (""##Insert_Runtime_Root##"", ""%__RuntimeRoot%"") | Output-File %__ConfigFileName% "
36- powershell " -NoProfile (Get-Content \" %__TemplateFileName% \" )`" ^
36+ powershell -NoProfile " (Get-Content \" %__TemplateFileName% \" )`" ^
3737 " -replace \" ##Insert_Runtime_Root##\" , \" %__RuntimeRoot% \" `" ^
3838 " |ForEach-Object{$_ -replace \" ##Insert_Nuget_Cache_Root##\" , \" %__NugetCacheDir% \" } `" ^
3939 " |ForEach-Object{$_ -replace \" ##Cli_Path##\" , \" %__CliPath% \" } `" ^
Original file line number Diff line number Diff line change @@ -190,9 +190,9 @@ if defined DoLink (
190190
191191REM Prepare the Test Drop
192192REM Cleans any NI from the last run
193- powershell " -NoProfile Get-ChildItem -path %__TestWorkingDir% -Include '*.ni.*' -Recurse -Force | Remove-Item -force"
193+ powershell -NoProfile " Get-ChildItem -path %__TestWorkingDir% -Include '*.ni.*' -Recurse -Force | Remove-Item -force"
194194REM Cleans up any lock folder used for synchronization from last run
195- powershell " -NoProfile Get-ChildItem -path %__TestWorkingDir% -Include 'lock' -Recurse -Force | where {$_.Attributes -eq 'Directory'}| Remove-Item -force -Recurse"
195+ powershell -NoProfile " Get-ChildItem -path %__TestWorkingDir% -Include 'lock' -Recurse -Force | where {$_.Attributes -eq 'Directory'}| Remove-Item -force -Recurse"
196196
197197if defined CORE_ROOT goto SkipCoreRootSetup
198198
Original file line number Diff line number Diff line change 66
77set CORE_ROOT = %CD% \bin\tests\Windows_NT.%1 .%2 \Tests\Core_Root
88set FRAMEWORK_DIR = %CD% \bin\tests\Windows_NT.%1 .%2 \GC\Stress\Framework\ReliabilityFramework
9- powershell " -NoProfile %CORE_ROOT% \CoreRun.exe %FRAMEWORK_DIR% \ReliabilityFramework.exe %FRAMEWORK_DIR% \testmix_gc.config"
9+ powershell -NoProfile " %CORE_ROOT% \CoreRun.exe %FRAMEWORK_DIR% \ReliabilityFramework.exe %FRAMEWORK_DIR% \testmix_gc.config"
1010if %ERRORLEVEL% == 100 (
1111 @ rem The ReliabilityFramework returns 100 on success and 99 on failure
1212 echo ReliabilityFramework successful
You can’t perform that action at this time.
0 commit comments