Kaydet (Commit) 960efe9c authored tarafından Neal Norwitz's avatar Neal Norwitz

Fix exception in tearDown on ppc buildbot. If there's no directory,

that shouldn't cause the test to fail.  Just like it setUp.
üst 653272f0
......@@ -58,7 +58,7 @@ class BaseThreadedTestCase(unittest.TestCase):
try:
os.mkdir(homeDir)
except OSError, e:
if e.errno <> errno.EEXIST: raise
if e.errno != errno.EEXIST: raise
self.env = db.DBEnv()
self.setEnvOpts()
self.env.open(homeDir, self.envflags | db.DB_CREATE)
......@@ -72,7 +72,10 @@ class BaseThreadedTestCase(unittest.TestCase):
def tearDown(self):
self.d.close()
self.env.close()
shutil.rmtree(self.homeDir)
try:
shutil.rmtree(self.homeDir)
except OSError, e:
if e.errno != errno.EEXIST: raise
def setEnvOpts(self):
pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment