From b41e8bd3c52a675ebbf4f6a900e179e977524964 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Salgado Date: Fri, 18 Apr 2025 13:26:59 +0100 Subject: [PATCH] gh-132553: Build the perf tool without buildid cache (GH-132663) (cherry picked from commit e01e5829020e517eb68a47da4dd65926a9d144de) Co-authored-by: Pablo Galindo Salgado --- Lib/test/test_perf_profiler.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_perf_profiler.py b/Lib/test/test_perf_profiler.py index 778d4db65b14c5..03a4563dd924aa 100644 --- a/Lib/test/test_perf_profiler.py +++ b/Lib/test/test_perf_profiler.py @@ -252,6 +252,8 @@ def perf_command_works(): cmd = ( "perf", "record", + "--no-buildid", + "--no-buildid-cache", "-g", "--call-graph=fp", "-o", @@ -281,11 +283,22 @@ def run_perf(cwd, *args, use_jit=False, **env_vars): env = None output_file = cwd + "/perf_output.perf" if not use_jit: - base_cmd = ("perf", "record", "-g", "--call-graph=fp", "-o", output_file, "--") + base_cmd = ( + "perf", + "record", + "--no-buildid", + "--no-buildid-cache", + "-g", + "--call-graph=fp", + "-o", output_file, + "--" + ) else: base_cmd = ( "perf", "record", + "--no-buildid", + "--no-buildid-cache", "-g", "--call-graph=dwarf,65528", "-F99",