summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith.bostic@mongodb.com>2017-08-24 09:20:52 -0400
committersueloverso <sue@mongodb.com>2017-08-24 09:20:52 -0400
commit18f50a22d6efbb718414bc6b285ffee53fd2e4f0 (patch)
tree65c94ecf2d89d156fac9e80d04cb671bb316d209
parentb29ec27e4ad1dcf6121404d6d3a4a288bf30fe6f (diff)
downloadmongo-18f50a22d6efbb718414bc6b285ffee53fd2e4f0.tar.gz
WT-3541 Python test_reconfig02 timeout on the PPC (#3613)
Increase the amount of time we're willing to wait for the pre-allocated log files to show up.
-rw-r--r--test/suite/test_reconfig02.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite/test_reconfig02.py b/test/suite/test_reconfig02.py
index bba224d1bb5..0694f3621d8 100644
--- a/test/suite/test_reconfig02.py
+++ b/test/suite/test_reconfig02.py
@@ -81,7 +81,7 @@ class test_reconfig02(wttest.WiredTigerTestCase):
#
# Potentially loop a few times in case it is a very slow system.
self.conn.reconfigure("log=(prealloc=true)")
- for x in xrange(0, 20):
+ for x in xrange(0, 100):
time.sleep(1)
prep_logs = fnmatch.filter(os.listdir('.'), "*Prep*")
if len(prep_logs) != 0: