diff options
| author | Med Ismail Bennani <ismail@bennani.ma> | 2024-06-06 12:17:00 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-06 12:17:00 -0700 |
| commit | d09231a422f052d6f6f44913fad610728a7c266b (patch) | |
| tree | 66dfb2e4208f621e29007aa066f179ffe65a2a1d /lldb/examples/python | |
| parent | 5d0308f3930887a1610b6965b6c8cec10733cdb2 (diff) | |
| download | llvm-d09231a422f052d6f6f44913fad610728a7c266b.zip llvm-d09231a422f052d6f6f44913fad610728a7c266b.tar.gz llvm-d09231a422f052d6f6f44913fad610728a7c266b.tar.bz2 | |
[lldb/crashlog] Remove aarch64 requirement on crashlog tests (#94553)
This PR removes the `target-aarch64` requirement on the crashlog tests
to exercice them on Intel bots and make image loading single-threaded
temporarily while implementing a fix for a deadlock issue when loading
the images in parallel.
Signed-off-by: Med Ismail Bennani <ismail@bennani.ma>
Diffstat (limited to 'lldb/examples/python')
| -rwxr-xr-x | lldb/examples/python/crashlog.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py index 5281d6d..1c0d717 100755 --- a/lldb/examples/python/crashlog.py +++ b/lldb/examples/python/crashlog.py @@ -1814,6 +1814,9 @@ def SymbolicateCrashLogs(debugger, command_args, result, is_command): ) ) + if "NO_PARALLEL_IMG_LOADING" in os.environ: + options.no_parallel_image_loading = True + if options.version: print(debugger.GetVersionString()) return |
