summaryrefslogtreecommitdiff
path: root/runner
diff options
context:
space:
mode:
authorHarish Chegondi <harish.chegondi@intel.com>2020-05-15 00:41:50 -0700
committerPetri Latvala <petri.latvala@intel.com>2020-05-15 14:24:36 +0300
commit2cc4c1edc3065590f9917930b6d049a90c4a38fd (patch)
tree1bb4fed2ef7c0e3398e727544d6d716a9428a196 /runner
parent5637a466a0b09535517751608f5525a8b468a76b (diff)
runner/resultgen: Fix dmesg whitelist entry's regular expression
PCI devices' B/D/F numbers can have alphabets in hex. Fix the regexp so that hex B/D/F numbers also match the regular expression. Cc: Petri Latvala <petri.latvala@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Swathi Dhanavanthri <swathi.dhanavanthri@intel.com> Cc: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com>
Diffstat (limited to 'runner')
-rw-r--r--runner/resultgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runner/resultgen.c b/runner/resultgen.c
index fe59aafe..17147a8f 100644
--- a/runner/resultgen.c
+++ b/runner/resultgen.c
@@ -800,7 +800,7 @@ static const char igt_dmesg_whitelist[] =
* module load after the testing finishes, which produces this
* message.
*/
- "i915: probe of [0-9:.]+ failed with error -25" _
+ "i915: probe of [0-9a-fA-F:.]+ failed with error -25" _
/* swiotbl warns even when asked not to */
"mock: DMA: Out of SW-IOMMU space for [0-9]+ bytes" _
"usb usb[0-9]+: root hub lost power or was reset"