|
@ -55,7 +55,10 @@ class SimpleTestCase(test.TestCase): |
|
|
except: |
|
|
except: |
|
|
pass |
|
|
pass |
|
|
# make it again. |
|
|
# make it again. |
|
|
mkdir(self.tmpdir) |
|
|
try: |
|
|
|
|
|
mkdir(self.tmpdir) |
|
|
|
|
|
except: |
|
|
|
|
|
pass |
|
|
|
|
|
|
|
|
def BeforeRun(self): |
|
|
def BeforeRun(self): |
|
|
# delete the whole tmp dir |
|
|
# delete the whole tmp dir |
|
@ -64,7 +67,12 @@ class SimpleTestCase(test.TestCase): |
|
|
except: |
|
|
except: |
|
|
pass |
|
|
pass |
|
|
# make it again. |
|
|
# make it again. |
|
|
mkdir(self.tmpdir) |
|
|
# intermittently fails on win32, so keep trying |
|
|
|
|
|
while not os.path.exists(self.tmpdir): |
|
|
|
|
|
try: |
|
|
|
|
|
mkdir(self.tmpdir) |
|
|
|
|
|
except: |
|
|
|
|
|
pass |
|
|
|
|
|
|
|
|
def GetLabel(self): |
|
|
def GetLabel(self): |
|
|
return "%s %s" % (self.mode, self.GetName()) |
|
|
return "%s %s" % (self.mode, self.GetName()) |
|
|