From 336d3c1344aee4596fbfc86dcb5dfebbb239b86e Mon Sep 17 00:00:00 2001 From: Ryan Moeller Date: Thu, 19 Dec 2019 13:44:22 -0500 Subject: [PATCH] Fix test pattern in zts-report.py The pattern was not updated to match when the test output changed to include a platform identifier for platform specfic tests. Signed-off-by: Ryan Moeller --- tests/test-runner/bin/zts-report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-runner/bin/zts-report.py b/tests/test-runner/bin/zts-report.py index 0e78c3547914..b833d62f5810 100755 --- a/tests/test-runner/bin/zts-report.py +++ b/tests/test-runner/bin/zts-report.py @@ -287,7 +287,7 @@ def process_results(pathname): prefix = '/zfs-tests/tests/functional/' pattern = \ - r'^Test:\s*\S*%s(\S+)\s*\(run as (\S+)\)\s*\[(\S+)\]\s*\[(\S+)\]' \ + r'^Test(?:\s+\(\S+\))?:\s*\S*%s(\S+)\s*\(run as (\S+)\)\s*\[(\S+)\]\s*\[(\S+)\]' \ % prefix pattern_log = r'^\s*Log directory:\s*(\S*)'