summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-11-14 17:43:16 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-11-14 17:43:16 (GMT)
commitca020bb7a76ad045e3165eeaa76845669fe5c4a8 (patch)
treed8d6288b4c5610dd7fd4be593e504f88e5eb029d
parent7f7eea651f558297ac91d376c8dce462eefef0f3 (diff)
downloadcpython-ca020bb7a76ad045e3165eeaa76845669fe5c4a8.zip
cpython-ca020bb7a76ad045e3165eeaa76845669fe5c4a8.tar.gz
cpython-ca020bb7a76ad045e3165eeaa76845669fe5c4a8.tar.bz2
Turn the bsddb replication startup timeout test into a
warning, to improve buildbot stability.
-rw-r--r--Lib/bsddb/test/test_replication.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/Lib/bsddb/test/test_replication.py b/Lib/bsddb/test/test_replication.py
index 8e8309b..b3775c7 100644
--- a/Lib/bsddb/test/test_replication.py
+++ b/Lib/bsddb/test/test_replication.py
@@ -130,8 +130,13 @@ class DBReplicationManager(unittest.TestCase):
print >> sys.stderr, \
"XXX - windows bsddb replication fails on windows and is skipped"
print >> sys.stderr, "XXX - Please see issue #3892"
- else:
- self.assertTrue(time.time()<timeout)
+ # It also fails irregularly on other platforms, and again the
+ # rest of the tests pass. Since bsddb support is unmaintained, and
+ # is gone in py3k, we just emit a warning instead of a test failure
+ # so as to improve buildbot stability.
+ elif time.time()>timeout:
+ print >> sys.stderr, \
+ "XXX - timeout before startup confirmed, see issue #3892."
d = self.dbenvMaster.repmgr_site_list()
self.assertEquals(len(d), 1)