classification
Title: Windows buildbot occasional DBFileExistsError failures in test_bsddb3
Type: behavior Stage: needs patch
Components: Library (Lib), Tests Versions: Python 2.7, Python 2.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: jcea Nosy List: amaury.forgeotdarc, jcea, r.david.murray (3)
Priority: normal Keywords buildbot

Created on 2009-11-06 02:58 by r.david.murray, last changed 2009-11-06 14:17 by amaury.forgeotdarc.

Messages (2)
msg94962 - (view) Author: R. David Murray (r.david.murray) Date: 2009-11-06 02:58
The windows buildbot occasionally fails with tracebacks like this:

======================================================================
ERROR: test01_badpointer (bsddb.test.test_misc.MiscTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"E:\cygwin\home\db3l\buildarea\2.6.bolen-windows\build\lib\bsddb\test\test_misc.py",
line 21, in test01_badpointer
    dbs = dbshelve.open(self.filename)
  File
"E:\cygwin\home\db3l\buildarea\2.6.bolen-windows\build\lib\bsddb\dbshelve.py",
line 106, in open
    d.open(filename, dbname, filetype, flags, mode)
  File
"E:\cygwin\home\db3l\buildarea\2.6.bolen-windows\build\lib\bsddb\dbshelve.py",
line 171, in open
    self.db.open(*args, **kwargs)
DBFileExistsError: (17, 'File exists -- __fop_file_setup:  Retry limit
(100) exceeded')

This also happens for several of the other test methods.
msg94970 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) Date: 2009-11-06 14:17
Unless I am mistaken, self.filename has no path, and files are created
in the current directory...
History
Date User Action Args
2009-11-06 14:17:17amaury.forgeotdarcsetnosy: + amaury.forgeotdarc
messages: + msg94970
2009-11-06 02:58:51r.david.murraycreate