summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/testing/fixtures/standalone.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/resmokelib/testing/fixtures/standalone.py')
-rw-r--r--buildscripts/resmokelib/testing/fixtures/standalone.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/buildscripts/resmokelib/testing/fixtures/standalone.py b/buildscripts/resmokelib/testing/fixtures/standalone.py
index 98e18241df8..0380e02214c 100644
--- a/buildscripts/resmokelib/testing/fixtures/standalone.py
+++ b/buildscripts/resmokelib/testing/fixtures/standalone.py
@@ -92,8 +92,9 @@ class MongoDFixture(interface.Fixture):
raise errors.TestFailure("%s did not exit cleanly" % (self))
def setup(self):
- if not self.preserve_dbpath:
- utils.rmtree(self._dbpath, ignore_errors=True)
+ """Set up the mongod."""
+ if not self.preserve_dbpath and os.path.lexists(self._dbpath):
+ utils.rmtree(self._dbpath, ignore_errors=False)
try:
os.makedirs(self._dbpath)