changeset 28455 | 412ee35a8005 |
parent 28397 | 98a1a9547bb1 |
child 28568 | 4a908089fe29 |
--- a/tests/run-tests.py Thu Mar 10 00:12:33 2016 +0000 +++ b/tests/run-tests.py Thu Mar 10 00:19:55 2016 +0000 @@ -2384,9 +2384,9 @@ def _killchgdaemons(self): """Kill all background chg command servers spawned by tests""" for f in os.listdir(self._chgsockdir): - if not f.endswith(b'.pid'): + if '.' in f: continue - killdaemons(os.path.join(self._chgsockdir, f)) + os.unlink(os.path.join(self._chgsockdir, f)) def _outputcoverage(self): """Produce code coverage output."""