From 07be4786e6a31f416472b20815a7c916b7f4699e Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Sun, 16 Feb 2025 21:37:57 +0100 Subject: [PATCH] Print gtest output in run_perf_counter.py --- scripts/run_perf_counter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/run_perf_counter.py b/scripts/run_perf_counter.py index 785d69b77..efb8358bb 100644 --- a/scripts/run_perf_counter.py +++ b/scripts/run_perf_counter.py @@ -30,6 +30,8 @@ def run_script(_script_path): if result.returncode != 0: raise Exception(f"Subprocess return {result.returncode}.") + print(result.stdout) + print(result.stderr) return result.stdout.splitlines()