##// END OF EJS Templates
run-tests: ignore failures from rmtree...
Gregory Szorc -
r21461:a46a9198 default
parent child Browse files
Show More
@@ -383,6 +383,8 b' class Test(object):'
383 383 killdaemons(entry)
384 384
385 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 388 shutil.rmtree(self._threadtmp, True)
387 389
388 390 def setUp(self):
@@ -525,7 +527,7 b' class Test(object):'
525 527 self._daemonpids = []
526 528
527 529 if not self._options.keep_tmpdir:
528 shutil.rmtree(self._testtmp)
530 shutil.rmtree(self._testtmp, True)
529 531
530 532 if (self._ret != 0 or self._out != self._refout) and not self._skipped \
531 533 and not self._options.debug and self._out:
General Comments 0
You need to be logged in to leave comments. Login now