Skip to content

Commit 4a7a186

Browse files
committed
Fix CI
1 parent 6f203d7 commit 4a7a186

File tree

11 files changed

+19
-5
lines changed

11 files changed

+19
-5
lines changed

libcxx/modules/std/debugging.inc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
export namespace std {
1111
#if _LIBCPP_STD_VER >= 26 && defined(_LIBCPP_HAS_DEBUGGING)
1212
// [debugging.utility], utility
13-
using stgd::breakpoint;
14-
using stgd::breakpoint_if_debugging;
15-
using stgd::is_debugger_present;
13+
using std::breakpoint;
14+
using std::breakpoint_if_debugging;
15+
using std::is_debugger_present;
1616
#endif
1717
} // namespace std

libcxx/test/libcxx/transitive_includes/cxx03.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ ctgmath cmath
201201
cwchar cstddef
202202
cwchar cwctype
203203
cwctype cctype
204+
debugging version
204205
deque algorithm
205206
deque atomic
206207
deque compare

libcxx/test/libcxx/transitive_includes/cxx11.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ ctgmath cmath
202202
cwchar cstddef
203203
cwchar cwctype
204204
cwctype cctype
205+
debugging version
205206
deque algorithm
206207
deque atomic
207208
deque compare

libcxx/test/libcxx/transitive_includes/cxx14.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ ctgmath cmath
202202
cwchar cstddef
203203
cwchar cwctype
204204
cwctype cctype
205+
debugging version
205206
deque algorithm
206207
deque atomic
207208
deque compare

libcxx/test/libcxx/transitive_includes/cxx17.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ ctgmath cmath
202202
cwchar cstddef
203203
cwchar cwctype
204204
cwctype cctype
205+
debugging version
205206
deque algorithm
206207
deque atomic
207208
deque compare

libcxx/test/libcxx/transitive_includes/cxx20.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ ctgmath cmath
208208
cwchar cstddef
209209
cwchar cwctype
210210
cwctype cctype
211+
debugging version
211212
deque algorithm
212213
deque atomic
213214
deque compare

libcxx/test/libcxx/transitive_includes/cxx23.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ ctgmath cmath
140140
cwchar cstddef
141141
cwchar cwctype
142142
cwctype cctype
143+
debugging version
143144
deque compare
144145
deque cstddef
145146
deque cstdint

libcxx/test/libcxx/transitive_includes/cxx26.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ ctgmath cmath
140140
cwchar cstddef
141141
cwchar cwctype
142142
cwctype cctype
143+
debugging version
143144
deque compare
144145
deque cstddef
145146
deque cstdint

libcxx/test/std/utilities/debugging/is_debugger_present_with_debugger_gdb.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def exit_handler(event=None):
8282
print(f"FAILED {test_failures} cases")
8383
exit(test_failures)
8484

85+
8586
def main():
8687
"""Main entry point"""
8788
# Start code executed at load time
@@ -114,5 +115,6 @@ def main():
114115

115116
print(f"Test failures count: {test_failures}")
116117

118+
117119
if __name__ == "__main__":
118120
main()

libcxx/test/std/utilities/debugging/is_debugger_present_with_debugger_lldb.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
# we exit.
2020
has_run_tests = False
2121

22+
2223
def breakpoint_handler(frame, bp_loc, internal_dict):
23-
print("===============> breakpoint_handler")
2424
global has_run_tests
2525

2626
try:
@@ -52,6 +52,7 @@ def breakpoint_handler(frame, bp_loc, internal_dict):
5252

5353
test_failures += 1
5454

55+
5556
def exit_handler(debugger):
5657
"""Exit handler"""
5758

@@ -73,7 +74,9 @@ def __lldb_init_module(debugger, internal_dict):
7374

7475
target = debugger.GetSelectedTarget()
7576
test_bp = target.BreakpointCreateByName("StopForDebugger")
76-
test_bp.SetScriptCallbackFunction("is_debugger_present_with_debugger_lldb.breakpoint_handler")
77+
test_bp.SetScriptCallbackFunction(
78+
"is_debugger_present_with_debugger_lldb.breakpoint_handler"
79+
)
7780
test_bp.enabled = True
7881

7982
debugger.HandleCommand("run")

0 commit comments

Comments
 (0)