From 4fa02bf0faa65275ee1174057f3ca25f63a67598 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 2 Nov 2023 05:45:38 +0100 Subject: test: prevent some classes of hangups This would allow the exceptions (like the logging misconfiguration exceptions recently) to propagate to the main process. --- test/py/test_repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/py/test_repo.py b/test/py/test_repo.py index 544213d..ec04e6d 100644 --- a/test/py/test_repo.py +++ b/test/py/test_repo.py @@ -57,9 +57,9 @@ def _test_repo_internal(env, repo, numof_processes, runs_per_process): for proc in processes: proc.start() - event.wait() for proc in processes: proc.join() + event.wait() repo.run_files_are_present(numof_runs) -- cgit v1.2.3