From e82ec77644f4fb7eccb3441485762c1c1c574b2f Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Mon, 9 Nov 2020 12:13:25 -0700 Subject: [PATCH] t/latency_percentiles.py: correct terse parse For some reason the script expects '3;fio-' when it should be latency. Signed-off-by: Jens Axboe --- t/latency_percentiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/latency_percentiles.py b/t/latency_percentiles.py index 6ce4579a..a9aee019 100755 --- a/t/latency_percentiles.py +++ b/t/latency_percentiles.py @@ -224,7 +224,7 @@ class FioLatTest(): lines = file_data.splitlines() for i in range(8): file_data = lines[i] - if file_data.startswith('3;fio-'): + if file_data.startswith('3;;latency'): self.terse_data = file_data.split(';') return True -- 2.25.1