mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-10 09:13:10 +08:00
inc timeouts (#705)
This commit is contained in:
parent
ae3340a0fb
commit
cdc9a7562d
1 changed files with 2 additions and 2 deletions
|
@ -257,14 +257,14 @@ test_script:
|
|||
|
||||
[bool]$res=$false
|
||||
# Wait 120 sec timeout for Job
|
||||
if(Wait-Job $Job -Timeout 120){
|
||||
if(Wait-Job $Job -Timeout 150){
|
||||
$Results = $Job | Receive-Job
|
||||
if($Results -like "true"){
|
||||
$res=$true
|
||||
}
|
||||
} else {
|
||||
Write-host "Test [$Name] timeout" -ForegroundColor Red
|
||||
Add-AppveyorTest -Name "$Name" -Framework NUnit -Filename "$File" -Outcome Failed -Duration 40000 -ErrorMessage "timeout"
|
||||
Add-AppveyorTest -Name "$Name" -Framework NUnit -Filename "$File" -Outcome Failed -Duration 60000 -ErrorMessage "timeout"
|
||||
}
|
||||
Remove-Job -Force $Job
|
||||
|
||||
|
|
Loading…
Reference in a new issue