From 9c8abe9758aeb817322e86d8c7aeae9a1a010539 Mon Sep 17 00:00:00 2001 From: Kamil Gierszewski Date: Thu, 5 Sep 2024 03:47:18 +0200 Subject: [PATCH] test-framework: fix io_stat parser --- test_utils/io_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_utils/io_stats.py b/test_utils/io_stats.py index 9a3f218..4f0fe63 100644 --- a/test_utils/io_stats.py +++ b/test_utils/io_stats.py @@ -8,7 +8,7 @@ from core.test_run import TestRun from test_utils.output import CmdException SYSFS_LINE_FORMAT = r"^(\d+\s+){10,}\d+$" -PROCFS_LINE_FORMAT = r"^\d+\s+\d+\s+\w+\s+" + SYSFS_LINE_FORMAT[1:] +PROCFS_LINE_FORMAT = r"^\d+\s+\d+\s+[\w-]+\s+" + SYSFS_LINE_FORMAT[1:] # This class represents block device I/O statistics.