From 4bba61d9e92564fe451eefcf0d6891a4753cace7 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Tue, 14 Dec 2021 10:26:26 -0800 Subject: [PATCH] regression_test: Print ERROR in status column if stations could not acquire IPs Signed-off-by: Matthew Stidham --- py-scripts/eth_check.py | 0 py-scripts/regression_test.sh | 4 ++++ 2 files changed, 4 insertions(+) create mode 100644 py-scripts/eth_check.py diff --git a/py-scripts/eth_check.py b/py-scripts/eth_check.py new file mode 100644 index 00000000..e69de29b diff --git a/py-scripts/regression_test.sh b/py-scripts/regression_test.sh index 4beb2c21..16472d19 100755 --- a/py-scripts/regression_test.sh +++ b/py-scripts/regression_test.sh @@ -555,6 +555,10 @@ function test() { then TEXTCLASS="partial_failure" TDTEXT="Partial Failure" + elif [[ $TEXT =~ "FAILED" ]] + then + TEXTCLASS="partial_failure" + TDTEXT="ERROR" else TEXTCLASS="success" TDTEXT="Success"