diff options
author | Tibor Frank <tifrank@cisco.com> | 2023-02-03 08:05:09 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2023-02-03 07:13:16 +0000 |
commit | 101daf3a8a707688700447cc9c6cdbd6f53e7360 (patch) | |
tree | 3d304fcb3851dda71dd97ca2134ac76c8b9380f3 /resources/tools/presentation/input_data_parser.py | |
parent | 61dae95975d881bc3f9cef16f1aee47f649374d8 (diff) |
Report: Add mlx5 tests
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Ifca88af4dc0fde18f459e490f12a8e57b71aab89
Diffstat (limited to 'resources/tools/presentation/input_data_parser.py')
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 11cbae7259..72d4253db0 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -825,7 +825,7 @@ class ExecutionChecker(ResultVisitor): result["completed-requests"] = int(groups.group(5)) result["failed-requests"] = int(groups.group(6)) result["bytes-transferred"] = int(groups.group(4)) - if "TCP_CPS"in tags: + if "TCP_CPS" in tags: result["cps"] = float(groups.group(3)) elif "TCP_RPS" in tags: result["rps"] = float(groups.group(3)) |