From 82de84469f33590e12c216889b14470d38fe9b58 Mon Sep 17 00:00:00 2001 From: Jarred Allen Date: Tue, 23 Mar 2021 00:01:45 -0400 Subject: [PATCH] Slight change to regression-wally.py comments --- wally-pipelined/regression/regression-wally.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wally-pipelined/regression/regression-wally.py b/wally-pipelined/regression/regression-wally.py index 941a7e75..529e096d 100755 --- a/wally-pipelined/regression/regression-wally.py +++ b/wally-pipelined/regression/regression-wally.py @@ -4,7 +4,7 @@ # regression-wally.py # David_Harris@Hmc.edu 25 January 2021 # -# Run a regression with multiple configurations and report any errors. +# Run a regression with multiple configurations in parallel and exit with non-zero status if an error happened # ################################## @@ -41,7 +41,7 @@ def test_config(config, print_res=True): if print_res:print(logname+": failures detected") return 1 - +# Run the tests and count the failures pool = multiprocessing.Pool(min(len(confignames), 12)) fail = sum(pool.map(test_config, confignames))