From bb6a6c81f32715bffa6f4a39c198880bbf5dc042 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Thu, 16 Dec 2021 13:41:14 +0300 Subject: [PATCH] =?UTF-8?q?selfcheck.py:=20don=E2=80=99t=20show=20'differe?= =?UTF-8?q?nt=20index'=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- clover/src/selfcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clover/src/selfcheck.py b/clover/src/selfcheck.py index 93668958..d9abda37 100755 --- a/clover/src/selfcheck.py +++ b/clover/src/selfcheck.py @@ -648,7 +648,7 @@ def check_clover_service(): elif 'failed' in output: failure('service failed to run, check your launch-files') - BLACKLIST = 'Unexpected command 520', 'Time jump detected' + BLACKLIST = 'Unexpected command 520', 'Time jump detected', 'different index:' r = re.compile(r'^(.*)\[(FATAL|ERROR| WARN)\] \[\d+.\d+\]: (.*?)(\x1b(.*))?$') error_count = OrderedDict()