Skip to content

Commit 4304d90

Browse files
[libc++][lldb-dap][test] Fix CI for bootstrapping-build (#141543)
#140107 changed the default argument of `disableASLR` of related functions from `False` to `True`. libc++ CI has been stably failing for `TestDAP_subtleFrames.py` (in bootstrapping-build) since then. The error message "personality set failed: Operation not permitted" seems related to ASLR. This PR attempts to fix the CI failure by changing the default value of `disableASLR` in `dap_server.py` to `False`.
1 parent 1f1c725 commit 4304d90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ def request_launch(
856856
cwd: Optional[str] = None,
857857
env: Optional[dict[str, str]] = None,
858858
stopOnEntry=False,
859-
disableASLR=True,
859+
disableASLR=False,
860860
disableSTDIO=False,
861861
shellExpandArguments=False,
862862
runInTerminal=False,

0 commit comments

Comments
 (0)