File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -560,6 +560,7 @@ function PrintGdbCoreCallStack($CoreFile) {
560
560
function Wait-TestCase ($TestCase ) {
561
561
$ProcessCrashed = $false
562
562
$AnyTestFailed = $false
563
+ $AnyTestSkipped = $false
563
564
$StdOut = $null
564
565
$StdOutTxt = $null
565
566
$StdError = $null
@@ -590,6 +591,7 @@ function Wait-TestCase($TestCase) {
590
591
LogWrn " No test results generated! Treating as crash!"
591
592
$ProcessCrashed = $true
592
593
}
594
+ $AnyTestSkipped = $StdOutTxt.Contains (" [ SKIPPED ]" )
593
595
}
594
596
$DumpFiles = (Get-ChildItem $TestCase.LogDir ) | Where-Object { $_.Extension -eq " .dmp" }
595
597
if ($DumpFiles ) {
@@ -660,6 +662,8 @@ function Wait-TestCase($TestCase) {
660
662
LogErr " $ ( $TestCase.Name ) failed (in $ ( $Delta.TotalSeconds ) sec):"
661
663
if ($StdOutTxt ) { Write-Host $StdOutTxt }
662
664
if ($StdErrorTxt ) { Write-Host $StdErrorTxt }
665
+ } elseif ($AnyTestSkipped ) {
666
+ Log " $ ( $TestCase.Name ) skipped"
663
667
} else {
664
668
Log " $ ( $TestCase.Name ) succeeded (in $ ( $Delta.TotalSeconds ) sec)"
665
669
}
You can’t perform that action at this time.
0 commit comments