From 542e1466b137590a55fbebbfc07390274a7c77e3 Mon Sep 17 00:00:00 2001 From: Joost Jager Date: Mon, 4 May 2020 22:20:00 +0200 Subject: [PATCH] itest: case insensitive log errors check --- lntest/itest/log_check_errors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lntest/itest/log_check_errors.sh b/lntest/itest/log_check_errors.sh index 80d6a07d3..d8425b47b 100755 --- a/lntest/itest/log_check_errors.sh +++ b/lntest/itest/log_check_errors.sh @@ -6,7 +6,7 @@ BASEDIR=$(dirname "$0") cat $BASEDIR/*.log | grep "\[ERR\]" | \ sed -r -f $BASEDIR/log_substitutions.txt | \ sort | uniq | \ -grep -Fv -f $BASEDIR/log_error_whitelist.txt +grep -Fvi -f $BASEDIR/log_error_whitelist.txt # If something shows up (not on whitelist) exit with error code 1. test $? -eq 1