Show More
@@ -383,6 +383,8 b' class Test(object):' | |||||
383 | killdaemons(entry) |
|
383 | killdaemons(entry) | |
384 |
|
384 | |||
385 | if self._threadtmp and not self._options.keep_tmpdir: |
|
385 | if self._threadtmp and not self._options.keep_tmpdir: | |
|
386 | # Ignore failures here. The rmtree() in the higher level runner | |||
|
387 | # will try again. | |||
386 | shutil.rmtree(self._threadtmp, True) |
|
388 | shutil.rmtree(self._threadtmp, True) | |
387 |
|
389 | |||
388 | def setUp(self): |
|
390 | def setUp(self): | |
@@ -525,7 +527,7 b' class Test(object):' | |||||
525 | self._daemonpids = [] |
|
527 | self._daemonpids = [] | |
526 |
|
528 | |||
527 | if not self._options.keep_tmpdir: |
|
529 | if not self._options.keep_tmpdir: | |
528 | shutil.rmtree(self._testtmp) |
|
530 | shutil.rmtree(self._testtmp, True) | |
529 |
|
531 | |||
530 | if (self._ret != 0 or self._out != self._refout) and not self._skipped \ |
|
532 | if (self._ret != 0 or self._out != self._refout) and not self._skipped \ | |
531 | and not self._options.debug and self._out: |
|
533 | and not self._options.debug and self._out: |
General Comments 0
You need to be logged in to leave comments.
Login now