summaryrefslogtreecommitdiff
path: root/.gitlab-ci/tracie/dump_trace_images.py
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci/tracie/dump_trace_images.py')
-rw-r--r--.gitlab-ci/tracie/dump_trace_images.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci/tracie/dump_trace_images.py b/.gitlab-ci/tracie/dump_trace_images.py
index 6a3ed6b18e6..343ff77bb31 100644
--- a/.gitlab-ci/tracie/dump_trace_images.py
+++ b/.gitlab-ci/tracie/dump_trace_images.py
@@ -77,8 +77,8 @@ def dump_with_apitrace(trace_path, calls, device_name):
outputprefix = str(Path(outputdir) / trace_path.name) + "-"
if len(calls) == 0:
calls = [str(get_last_apitrace_frame_call(trace_path))]
- cmd = ["apitrace", "dump-images", "--calls=" + ','.join(calls),
- "-o", outputprefix, str(trace_path)]
+ cmd = ["eglretrace", "--snapshot=" + ','.join(calls),
+ "--snapshot-prefix=" + outputprefix, str(trace_path)]
log_path = Path(outputdir) / (trace_path.name + ".log")
run_logged_command(cmd, None, log_path)