diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/tests/run_acl_tests.ps1 | 2 | ||||
-rw-r--r-- | cpp/src/tests/start_broker.ps1 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/tests/run_acl_tests.ps1 b/cpp/src/tests/run_acl_tests.ps1 index a1848779c7..46e070477f 100644 --- a/cpp/src/tests/run_acl_tests.ps1 +++ b/cpp/src/tests/run_acl_tests.ps1 @@ -50,7 +50,7 @@ Function start_broker($acl_options) . $srcdir\background.ps1 $cmdblock # Wait for the broker to start $wait_time = 0 - while (!(Test-Path qpidd.port) -and ($wait_time -lt 10)) { + while (!(Test-Path qpidd.port) -and ($wait_time -lt 30)) { Start-Sleep 2 $wait_time += 2 } diff --git a/cpp/src/tests/start_broker.ps1 b/cpp/src/tests/start_broker.ps1 index 9263262b9f..6f4a140efd 100644 --- a/cpp/src/tests/start_broker.ps1 +++ b/cpp/src/tests/start_broker.ps1 @@ -49,7 +49,7 @@ $srcdir = Get-ScriptPath . $srcdir\background.ps1 $cmdblock $wait_time = 0 -while (!(Test-Path qpidd.port) -and ($wait_time -lt 10)) { +while (!(Test-Path qpidd.port) -and ($wait_time -lt 30)) { Start-Sleep 2 $wait_time += 2 } |