Skip to content

Commit 75f0f14

Browse files
[libc++][lldb-dap][test] Fix CI for bootstrapping-build
1 parent b9d7ef7 commit 75f0f14

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

libcxx/include/__config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,3 +1219,5 @@ typedef __char32_t char32_t;
12191219
#endif // __cplusplus
12201220

12211221
#endif // _LIBCPP___CONFIG
1222+
1223+
// Just for CI, will be reverted.

lldb/test/API/tools/lldb-dap/stackTrace/subtleFrames/TestDAP_subtleFrames.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_subtleFrames(self):
1717
Internal stack frames (such as the ones used by `std::function`) are marked as "subtle".
1818
"""
1919
program = self.getBuildArtifact("a.out")
20-
self.build_and_launch(program)
20+
self.build_and_launch(program, disableASLR=False)
2121
source = "main.cpp"
2222
self.set_source_breakpoints(source, [line_number(source, "BREAK HERE")])
2323
self.continue_to_next_stop()

0 commit comments

Comments
 (0)