aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib-python/2.7/test/test_bsddb3.py')
-rw-r--r--lib-python/2.7/test/test_bsddb3.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib-python/2.7/test/test_bsddb3.py b/lib-python/2.7/test/test_bsddb3.py
index 099145b460..1a82325d49 100644
--- a/lib-python/2.7/test/test_bsddb3.py
+++ b/lib-python/2.7/test/test_bsddb3.py
@@ -28,6 +28,10 @@ if 'silent' in sys.argv: # take care of old flag, just in case
verbose = False
sys.argv.remove('silent')
+# bpo-30778: test_bsddb3 crashs randomly on Windows XP
+if hasattr(sys, 'getwindowsversion') and sys.getwindowsversion()[:2] < (6, 0):
+ raise unittest.SkipTest("bpo-30778: skip tests on Windows XP")
+
class TimingCheck(unittest.TestCase):