From fa6bfe858f065995752c53a99ada177680f27907 Mon Sep 17 00:00:00 2001 From: Zhelyapov Aleksey Date: Sun, 20 Jul 2025 04:35:53 +0800 Subject: [PATCH] Fix es2panda benchmarks post-merge Issue: https://gitee.com/openharmony/arkcompiler_ets_frontend/issues/ICNU7N Signed-off-by: Zhelyapov Aleksey --- ets2panda/test/benchmarks/runner/benchmark_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ets2panda/test/benchmarks/runner/benchmark_runner.py b/ets2panda/test/benchmarks/runner/benchmark_runner.py index 5d632a0992..9df01f66c6 100644 --- a/ets2panda/test/benchmarks/runner/benchmark_runner.py +++ b/ets2panda/test/benchmarks/runner/benchmark_runner.py @@ -30,7 +30,7 @@ def run_and_parse(command: List) -> Dict: except (FileNotFoundError, subprocess.CalledProcessError) as e: print(f"Error executing command: {e}") if isinstance(e, subprocess.CalledProcessError): - print(f"Stderr:\n{e.stderr}") + print(f"Stdout:\n{e.stdout}\nStderr:\n{e.stderr}") return {} line_regex = re.compile(r":@(?P[\w\/-]+)\s*:\s*time=(?P