Skip to content

Commit

Permalink
Update msw-unit-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake-Madden committed Nov 17, 2023
1 parent b503f80 commit 8e9fc70
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/msw-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,29 @@ jobs:
cd ..
cd ..
rmdir /S /Q bin
cmake -DTE_POW_FROM_RIGHT = 1 ./
msbuild ${{ env.testrunner }}.sln
cd bin\Debug
./${{ env.testrunner }} --reporter JUnit::out=${{ env.outfile }}
cat ${{ env.outfile }}
$FileContent = Get-Content ${{ env.outfile }}
$errors = (Select-String -InputObject $FileContent -Pattern 'errors="([0-9]+)"' | % { $($_.matches.groups[1]) } )
$failures = (Select-String -InputObject $FileContent -Pattern 'failures="([0-9]+)"' | % { $($_.matches.groups[1]) } )
if ($errors.Value -gt 0)
{
Write-Host "Error count is: " + $errors.Value
exit 1
}
if ($failures.Value -gt 0)
{
Write-Host "Failure count is: " + $failures.Value
exit 1
}
cd ..
cd ..
rmdir /S /Q bin
cmake -DTE_FLOAT = 1 ./
msbuild ${{ env.testrunner }}.sln
cd bin\Debug
Expand Down

0 comments on commit 8e9fc70

Please sign in to comment.