mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 04:49:38 -07: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
|
[bool]$res=$false
|
||||||
# Wait 120 sec timeout for Job
|
# Wait 120 sec timeout for Job
|
||||||
if(Wait-Job $Job -Timeout 120){
|
if(Wait-Job $Job -Timeout 150){
|
||||||
$Results = $Job | Receive-Job
|
$Results = $Job | Receive-Job
|
||||||
if($Results -like "true"){
|
if($Results -like "true"){
|
||||||
$res=$true
|
$res=$true
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Write-host "Test [$Name] timeout" -ForegroundColor Red
|
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
|
Remove-Job -Force $Job
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue