From 920821f5d67218656e32f49ed34734e37f533439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lesimple?= Date: Thu, 7 Jan 2021 10:36:34 +0000 Subject: [PATCH] fix: tests: syslog-logged errors were not counted towards the total --- tests/functional/launch_tests_on_instance.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/launch_tests_on_instance.sh b/tests/functional/launch_tests_on_instance.sh index 2892ec6..117ab9e 100755 --- a/tests/functional/launch_tests_on_instance.sh +++ b/tests/functional/launch_tests_on_instance.sh @@ -462,7 +462,7 @@ echo set +e set +u -(( totalerrors = nbfailedret + nbfailedgrep + nbfailedcon + nbfailedgeneric )) +(( totalerrors = nbfailedret + nbfailedgrep + nbfailedcon + nbfailedlog + nbfailedgeneric )) [ $totalerrors -ge 255 ] && totalerrors=254 rm -rf "$mytmpdir"