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>
This commit is contained in:
parent
1b9d13c408
commit
ca35c177fd
1 changed files with 1 additions and 1 deletions
|
@ -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\).*$
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue