small improvement in tests (test result in green or red) (#448)

This commit is contained in:
Oleg Moiseenko 2017-10-26 19:32:18 +03:00 committed by pwpiwi
parent 8dd0118673
commit 5d7d0c3af9

View file

@ -189,7 +189,6 @@ test_script:
#execute scriptblock
Write-host "Test [$using:Name] job: $using:Cmd"
$Cond=&$sb
Write-host "Result[$using:Name]: $Cond"
if ($Cond -eq $null){
} Else {
@ -206,8 +205,10 @@ test_script:
}
If ($res) {
Write-host "Result[$using:Name]: $Cond" -ForegroundColor Green
Add-AppveyorTest -Name "$using:Name" -Framework NUnit -Filename "$using:File" -Outcome Passed -Duration "$([System.Environment]::TickCount-$TestTime)"
}Else {
Write-host "Result[$using:Name]: $Cond" -ForegroundColor Red
Add-AppveyorTest -Name "$using:Name" -Framework NUnit -Filename "$using:File" -Outcome Failed -Duration "$([System.Environment]::TickCount-$TestTime)" -ErrorMessage "command:$using:Cmd`nresult:$Cond"
}
return $res