summaryrefslogtreecommitdiff
path: root/test/end-to-end/with_serve_test_runner.py
diff options
context:
space:
mode:
authorAlberto Sartori <alberto.sartori@huawei.com>2023-10-20 09:27:37 +0200
committerAlberto Sartori <alberto.sartori@huawei.com>2023-10-20 09:27:37 +0200
commit68d66eaed65a35bba5c2fcfb132d797d91ef48fe (patch)
treef44d1453c31fc14cb3208a9c5472b0422eff7970 /test/end-to-end/with_serve_test_runner.py
parent4ef74caa5d96471d058bd1c9542d79ad58538da7 (diff)
downloadjustbuild-68d66eaed65a35bba5c2fcfb132d797d91ef48fe.tar.gz
with_serve_test_runner.py: terminate serve process at the end
Diffstat (limited to 'test/end-to-end/with_serve_test_runner.py')
-rwxr-xr-xtest/end-to-end/with_serve_test_runner.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/end-to-end/with_serve_test_runner.py b/test/end-to-end/with_serve_test_runner.py
index b8d7de72..9b94bfbf 100755
--- a/test/end-to-end/with_serve_test_runner.py
+++ b/test/end-to-end/with_serve_test_runner.py
@@ -230,6 +230,10 @@ assert remote_proc
remote_proc.terminate()
rout, rerr = remote_proc.communicate()
+assert serve_proc
+serve_proc.terminate()
+sout, serr = serve_proc.communicate()
+
dump_results()
for f in sys.argv[2:]: