Skip to content
Merged
Changes from all 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 tools/test/run-tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
.PARAMETER TestDataPath
Path to test data folder. Defaults to ".\test_data".
.PARAMETER Package
Path to the wsl.msix package to install. Defaults to ".\wsl.msix".
Path to the wsl.msix package to install. Defaults to ".\installer.msix".
.PARAMETER UnitTestsPath
Path to the linux/unit_tests directory to copy and install the unit tests.
.PARAMETER PullRequest
Expand Down Expand Up @@ -103,9 +103,9 @@ if ($AttachDebugger)
else
{
te.exe $teArgList
if (!$?)
if ($LASTEXITCODE -ne 0)
{
exit 1
exit $LASTEXITCODE
}
Comment on lines 105 to 109
}

Loading