Skip to content

Commit

Permalink
Fix small output error in make.ps1 (#4411)
Browse files Browse the repository at this point in the history
The full command wasn't being outout as `--debug=` was missing. It made
for reading the actual output as seen for the command look very odd.
  • Loading branch information
SeanTAllen authored Aug 23, 2023
1 parent d04fb49 commit 66c74e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ switch ($Command.ToLower())
}

if (-not (Test-Path $runOutDir)) { New-Item -ItemType Directory -Force -Path $runOutDir }
Write-Output "$buildDir\test\libponyc-run\runner\runner.exe --debug=$debugFlag --debugger=$debuggercmd --timeout_s=60 --max_parallel=1 --exclude=runner $debugFlag --test_lib=$outDir\test_lib --ponyc=$outDir\ponyc.exe --output=$runOutDir $srcDir\test\libponyc-run"
Write-Output "$buildDir\test\libponyc-run\runner\runner.exe --debug=$debugFlag --debugger=$debuggercmd --timeout_s=60 --max_parallel=1 --exclude=runner --debug=$debugFlag --test_lib=$outDir\test_lib --ponyc=$outDir\ponyc.exe --output=$runOutDir $srcDir\test\libponyc-run"
& $buildDir\test\libponyc-run\runner\runner.exe --debugger=$debuggercmd --timeout_s=60 --max_parallel=1 --exclude=runner --debug=$debugFlag --test_lib=$outDir\test_lib --ponyc=$outDir\ponyc.exe --output=$runOutDir $srcDir\test\libponyc-run
$err = $LastExitCode
if ($err -ne 0) { $failedTestSuites += "libponyc.run.tests.$runConfig" }
Expand Down

0 comments on commit 66c74e6

Please sign in to comment.