From: merlokk Date: Mon, 23 Oct 2017 10:43:46 +0000 (+0300) Subject: added write-host for tests X-Git-Tag: v3.1.0~145^2 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/b5381d70dcbe6599dcb472fb65a4fe0bc8de98f9?hp=-c added write-host for tests --- b5381d70dcbe6599dcb472fb65a4fe0bc8de98f9 diff --git a/appveyor.yml b/appveyor.yml index 58bb1362..b072335a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -187,7 +187,9 @@ test_script: $sb=[scriptblock]::Create("$using:Cmd") #execute scriptblock + Write-host "Test [$using:Name] job: $using:Cmd" $Cond=&$sb + Write-host "Result[$using:Name]: $Cond" if ($Cond -eq $null){ } Else { @@ -221,6 +223,7 @@ test_script: $res=$true } } else { + Write-host "Test [$Name] timeout" -ForegroundColor Red Add-AppveyorTest -Name "$Name" -Framework NUnit -Filename "$File" -Outcome Failed -Duration 40000 -ErrorMessage "timeout" } Remove-Job -Force $Job