summaryrefslogtreecommitdiffhomepage
path: root/test/unit/main.py
diff options
context:
space:
mode:
authorAndrei Zeliankou <zelenkov@nginx.com>2020-04-03 01:03:26 +0100
committerAndrei Zeliankou <zelenkov@nginx.com>2020-04-03 01:03:26 +0100
commit2bb8b3d88a191d96c6693007ad79ae808f872941 (patch)
tree7244b1925cea73e1a48e2e1b73786aff8ce80c15 /test/unit/main.py
parentbe943c9fd48b3e8d7f3e5be5b2fd251f958c63f7 (diff)
downloadunit-2bb8b3d88a191d96c6693007ad79ae808f872941.tar.gz
unit-2bb8b3d88a191d96c6693007ad79ae808f872941.tar.bz2
Tests: minor fixes.
Diffstat (limited to 'test/unit/main.py')
-rw-r--r--test/unit/main.py26
1 files changed, 18 insertions, 8 deletions
diff --git a/test/unit/main.py b/test/unit/main.py
index 49c1eed3..060a03a5 100644
--- a/test/unit/main.py
+++ b/test/unit/main.py
@@ -199,7 +199,7 @@ class TestUnit(unittest.TestCase):
self.skip_sanitizer = False
def tearDown(self):
- self.stop()
+ stop_errs = self.stop()
# detect errors and failures for current test
@@ -234,11 +234,19 @@ class TestUnit(unittest.TestCase):
else:
self._print_log()
+ self.assertListEqual(stop_errs, [None, None], 'stop errors')
+
def stop(self):
- self._stop()
- self.stop_processes()
+ errors = []
+
+ errors.append(self._stop())
+
+ errors.append(self.stop_processes())
+
atexit.unregister(self.stop)
+ return errors
+
def _stop(self):
if self._p.poll() is not None:
return
@@ -249,12 +257,10 @@ class TestUnit(unittest.TestCase):
try:
retcode = p.wait(15)
if retcode:
- self.fail(
- "Child process terminated with code " + str(retcode)
- )
+ return 'Child process terminated with code ' + str(retcode)
except:
p.kill()
- self.fail("Could not terminate unit")
+ return 'Could not terminate unit'
def run_process(self, target, *args):
if not hasattr(self, '_processes'):
@@ -269,13 +275,17 @@ class TestUnit(unittest.TestCase):
if not hasattr(self, '_processes'):
return
+ fail = False
for process in self._processes:
if process.is_alive():
process.terminate()
process.join(timeout=15)
if process.is_alive():
- self.fail('Fail to stop process')
+ fail = True
+
+ if fail:
+ return 'Fail to stop process'
def waitforfiles(self, *files):
for i in range(50):