Skip to content

Commit

Permalink
Fix incorrect location of new stress test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Dec 13, 2022
1 parent c6357b6 commit 45cf9d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ switch ($Command.ToLower())
$lldbcmd = 'C:\msys64\mingw64\bin\lldb.exe'
$lldbargs = @('--batch', '--one-line', 'run', '--one-line-on-crash', '"frame variable"', '--one-line-on-crash', '"register read"', '--one-line-on-crash', '"bt all"', '--one-line-on-crash', '"quit 1"', '--')

& $outDir\ponyc.exe --bin-name=ubench --output=$outDir rt-stress\string-message-ubench
& $outDir\ponyc.exe --bin-name=ubench --output=$outDir test\rt-stress\string-message-ubench
& $lldbcmd $lldbargs $outDir\ubench.exe --pingers 320 --initial-pings 5 --report-count 40 --report-interval 300 --ponynoscale --ponynoblock
$err = $LastExitCode
if ($err -ne 0) { throw "Stress test failed: exit code $err" }
Expand All @@ -415,7 +415,7 @@ switch ($Command.ToLower())
$lldbcmd = 'C:\msys64\mingw64\bin\lldb.exe'
$lldbargs = @('--batch', '--one-line', 'run', '--one-line-on-crash', '"frame variable"', '--one-line-on-crash', '"register read"', '--one-line-on-crash', '"bt all"', '--one-line-on-crash', '"quit 1"', '--')

& $outDir\ponyc.exe --bin-name=ubench --output=$outDir rt-stress\string-message-ubench
& $outDir\ponyc.exe --bin-name=ubench --output=$outDir test\rt-stress\string-message-ubench
& $lldbcmd $lldbargs $outDir\ubench.exe --pingers 320 --initial-pings 5 --report-count 40 --report-interval 300 --ponynoscale
$err = $LastExitCode
if ($err -ne 0) { throw "Stress test failed: exit code $err" }
Expand All @@ -426,7 +426,7 @@ switch ($Command.ToLower())
$lldbcmd = 'C:\msys64\mingw64\bin\lldb.exe'
$lldbargs = @('--batch', '--one-line', 'run', '--one-line-on-crash', '"frame variable"', '--one-line-on-crash', '"register read"', '--one-line-on-crash', '"bt all"', '--one-line-on-crash', '"quit 1"', '--')

& $outDir\ponyc.exe --debug --bin-name=ubench --output=$outDir rt-stress\string-message-ubench
& $outDir\ponyc.exe --debug --bin-name=ubench --output=$outDir test\rt-stress\string-message-ubench
& $lldbcmd $lldbargs $outDir\ubench.exe --pingers 320 --initial-pings 5 --report-count 40 --report-interval 300 --ponynoscale --ponynoblock
$err = $LastExitCode
if ($err -ne 0) { throw "Stress test failed: exit code $err" }
Expand All @@ -437,7 +437,7 @@ switch ($Command.ToLower())
$lldbcmd = 'C:\msys64\mingw64\bin\lldb.exe'
$lldbargs = @('--batch', '--one-line', 'run', '--one-line-on-crash', '"frame variable"', '--one-line-on-crash', '"register read"', '--one-line-on-crash', '"bt all"', '--one-line-on-crash', '"quit 1"', '--')

& $outDir\ponyc.exe --debug --bin-name=ubench --output=$outDir rt-stress\string-message-ubench
& $outDir\ponyc.exe --debug --bin-name=ubench --output=$outDir test\rt-stress\string-message-ubench
& $lldbcmd $lldbargs $outDir\ubench.exe --pingers 320 --initial-pings 5 --report-count 40 --report-interval 300 --ponynoscale
$err = $LastExitCode
if ($err -ne 0) { throw "Stress test failed: exit code $err" }
Expand Down

0 comments on commit 45cf9d0

Please sign in to comment.