From 24f7a64092a7f6c39a3fc9a454b0a2ee40908a04 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Wed, 12 Jan 2022 12:29:12 -0800 Subject: [PATCH] regression-test: if exit on error is 0, run the test Signed-off-by: Matthew Stidham --- py-scripts/regression_test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/py-scripts/regression_test.sh b/py-scripts/regression_test.sh index 7287365d..1b22e033 100755 --- a/py-scripts/regression_test.sh +++ b/py-scripts/regression_test.sh @@ -519,6 +519,8 @@ function start_tests() { if [[ ${CONTINUE} == "True" ]]; then test fi + else + test fi done }