summaryrefslogtreecommitdiff
path: root/.known-issues
diff options
context:
space:
mode:
authorInaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>2016-09-13 10:36:44 -0700
committerAnas Nashif <nashif@linux.intel.com>2016-09-14 12:20:52 +0000
commitca35c177fd2a63d277a82f7ee0d1fc61b941cc4f (patch)
tree356949f3ffc45085b03c6fcda1ed4692f5d35d26 /.known-issues
parent1b9d13c4084c04185ba9866d44de50cee0b089ff (diff)
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 <inaky.perez-gonzalez@intel.com>
Diffstat (limited to '.known-issues')
-rw-r--r--.known-issues/testcases/makefile.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/.known-issues/testcases/makefile.conf b/.known-issues/testcases/makefile.conf
index 607ca5c42..dd215726e 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\).*$