summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2011-11-02 16:20:41 +0000
committerStephen D. Huston <shuston@apache.org>2011-11-02 16:20:41 +0000
commit85fbdb355e6b7a57323ee026be76087485278c8d (patch)
treeb617dfe51e5c88e7c7c6ca308346752fd3095f1c
parent69c0717448bb20dcee467a9ffe375cb1e52a4994 (diff)
downloadqpid-python-85fbdb355e6b7a57323ee026be76087485278c8d.tar.gz
Give the broker more time to start; has been timing out lately. NO-JIRA.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1196667 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/tests/run_acl_tests.ps12
-rw-r--r--qpid/cpp/src/tests/start_broker.ps12
2 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/run_acl_tests.ps1 b/qpid/cpp/src/tests/run_acl_tests.ps1
index a1848779c7..46e070477f 100644
--- a/qpid/cpp/src/tests/run_acl_tests.ps1
+++ b/qpid/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/qpid/cpp/src/tests/start_broker.ps1 b/qpid/cpp/src/tests/start_broker.ps1
index 9263262b9f..6f4a140efd 100644
--- a/qpid/cpp/src/tests/start_broker.ps1
+++ b/qpid/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
}