From ca35c177fd2a63d277a82f7ee0d1fc61b941cc4f Mon Sep 17 00:00:00 2001 From: Inaky Perez-Gonzalez Date: Tue, 13 Sep 2016 10:36:44 -0700 Subject: [PATCH] known-issues: fix regex to catch summary messages to ignore The regular expression we use to catch the summary messages was not generic enough to catch it. This causes it to not be classified as a known issue to ignore and shows up in the output of filter-known-issues, when it should not. Fix the regex to be more generic. Change-Id: I3e53d061325c90c861799dabc1f548177c650bc3 Signed-off-by: Inaky Perez-Gonzalez --- .known-issues/testcases/makefile.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.known-issues/testcases/makefile.conf b/.known-issues/testcases/makefile.conf index 607ca5c425d..dd215726e95 100644 --- a/.known-issues/testcases/makefile.conf +++ b/.known-issues/testcases/makefile.conf @@ -15,4 +15,4 @@ # TCF's summary line. We don't need to consider it to determine if the # run failed or passed. # -^[A-Z]+0/[-a-z0-9:]* toplevel: [0-9]+ tests \([0-9]+ passed, [0-9]+ failed, [0-9]+ blocked, [0-9]+ skipped\) - failed$ +^[A-Z]+0/[-a-z0-9:]* toplevel: [0-9]+ tests \([0-9]+ passed, [0-9]+ failed, [0-9]+ blocked, [0-9]+ skipped\).*$