summaryrefslogtreecommitdiff
path: root/wintest/wintest.py
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-10-02 18:45:39 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-10-03 14:25:57 +0200
commit10eba77dcbeec4b389aeb0a456884b7f067c1a3e (patch)
tree4fff4c6a2e6bca734c76b950c53c7572d082d697 /wintest/wintest.py
parent535fe95f3c884b247d374685cc4408aeabc64437 (diff)
downloadsamba-10eba77dcbeec4b389aeb0a456884b7f067c1a3e.tar.gz
samba-10eba77dcbeec4b389aeb0a456884b7f067c1a3e.tar.bz2
samba-10eba77dcbeec4b389aeb0a456884b7f067c1a3e.zip
wintest: Give netdom join more time to complete
Diffstat (limited to 'wintest/wintest.py')
-rw-r--r--wintest/wintest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wintest/wintest.py b/wintest/wintest.py
index 2b33950d8a..c0f1eebebf 100644
--- a/wintest/wintest.py
+++ b/wintest/wintest.py
@@ -878,7 +878,7 @@ RebootOnCompletion=No
child.expect("C:")
child.sendline("netdom join ${WIN_HOSTNAME} /Domain:%s /UserD:%s /PasswordD:%s" % (domain, username, password))
i = child.expect(["The command completed successfully",
- "The specified domain either does not exist or could not be contacted."])
+ "The specified domain either does not exist or could not be contacted."], timeout=120)
if i == 0:
break
time.sleep(10)