Skip to content

Conversation

@matthiaskrgr
Copy link
Member

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

Kobzol and others added 21 commits November 4, 2024 18:55
Our CI got a bit slower since the last time we lowered the timeout, and if e.g. Docker build cache is broken, the timeout can be triggered.
This matches the recently-stabilized methods on `HashMap` entries. I've reused tracking issue rust-lang#65225 for now, but we may want to split it.
There is a not-very-useful layering in the lexer, where `TokenTreesReader` contains a `StringReader`. This commit combines them and names the result `Lexer`, which is a more obvious name for it. The methods of `Lexer` are now split across `mod.rs` and `tokentrees.rs` which isn't ideal, but it doesn't seem worth moving a bunch of code to avoid it.
It has two different ways of being called.
Must be one of those cases where the function is too long and rustfmt bails out.
It's currently a bit ad hoc. This commit makes it more methodical, with pairs of match/no-match tests for all the relevant cases.
- Rename a misleading local `mk_kind` as `single_quoted`. - Use `fn` for all three arguments, for consistency.
- Use iterators instead of `for` loops. - Use `if`/`else` instead of `match`.
…-Simulacrum CI: increase timeout from 4h to 6h Our CI got a bit slower since the last time we [lowered](rust-lang#127648) the timeout, and if e.g. Docker build cache is broken, the timeout can be triggered. Discussed [here](https://rust-lang.zulipchat.com/#narrow/channel/242791-t-infra/topic/ci.20job.20timings.20stats).
…manieu btree: add `{Entry,VacantEntry}::insert_entry` This matches the recently-stabilized methods on `HashMap` entries. I've reused tracking issue rust-lang#65225 for now, but we may want to split it.
…kang Lexer tweaks Some cleanups and small performance improvements. r? `@chenyukang`
…acrum Don't use a SyntheticProvider for literally every type Replaces a glob regex with individualized imports for each standard library type. This improves debugger performance by quite a bit when populating lots of values with lots of fields With the glob, afaik every single value of every single type that the debugger renders is run through a python function that does quite a few string comparisons (i plan to fix those next) to determine the SyntheticProvider to use. It looks like DefaultSyntheticProvider's functions internally call the liblldb c++ functions, which ends up with identical behavior to not using a SyntheticProvider at all, except you have extra python round trips slowing things down. These sample vidoes were run on x86-64-pc-windows-gnu. `vect` is a 1000 element `Vec<Big>`, `Big` contains a dozen or so `Small`, and `Small` contains a dozen or so `[i32; 5]` Before: https://github.com/user-attachments/assets/07c31fe7-e126-4c2e-8ae9-cfe36e351d3f After: https://github.com/user-attachments/assets/6c0d1a45-1ffe-46de-95a0-5dbe59a173b5
…workingjubilee the emscripten OS no longer exists on non-wasm targets rust-lang#117338 removed our asmjs targets, which AFAIK means that emscripten only exists on wasm targets. However at least one place in the code still checked "is wasm or is emscripten". Let's fix that. Cc `@workingjubilee`
…example, r=Amanieu Added a doc test for std::path::strip_prefix I was about 90% sure `Path::new("/test/haha/foo.txt").strip_prefix("/te")` would return an Err, but I couldn't find an example to confirm this behaviour. This should be an easy merge :)
…WaffleLapkin Tweak parameter mismatch explanation to not say `{unknown}` * Tweak parameter mismatch explanation not to call parameters with no identifier `{unknown}` * Say "both" when there are two parameters * Backtick a type parameter name for consistency
…=tgross35 miri: disable test_downgrade_observe test on macOS Due to rust-lang#121950, this test can fail on Miri. The test is also quite slow on Miri (taking more than 30s) due to the high iteration count (a total of 2000), so let's reduce that a little. Fixes rust-lang#133421
@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. rollup A PR which is a rollup labels Nov 25, 2024
@matthiaskrgr
Copy link
Member Author

@bors r+ rollup=never p=8

@bors
Copy link
Collaborator

bors commented Nov 25, 2024

📌 Commit cee0476 has been approved by matthiaskrgr

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Nov 25, 2024
@bors
Copy link
Collaborator

bors commented Nov 25, 2024

⌛ Testing commit cee0476 with merge b4e4430...

bors added a commit to rust-lang-ci/rust that referenced this pull request Nov 25, 2024
…iaskrgr Rollup of 8 pull requests Successful merges: - rust-lang#132605 (CI: increase timeout from 4h to 6h) - rust-lang#133042 (btree: add `{Entry,VacantEntry}::insert_entry`) - rust-lang#133070 (Lexer tweaks) - rust-lang#133134 (Don't use a SyntheticProvider for literally every type) - rust-lang#133411 (the emscripten OS no longer exists on non-wasm targets) - rust-lang#133419 (Added a doc test for std::path::strip_prefix) - rust-lang#133430 (Tweak parameter mismatch explanation to not say `{unknown}`) - rust-lang#133435 (miri: disable test_downgrade_observe test on macOS) r? `@ghost` `@rustbot` modify labels: rollup
@BoxyUwU
Copy link
Member

BoxyUwU commented Nov 25, 2024

@bors retry
Yield priority to the stable release.

@rust-log-analyzer
Copy link
Collaborator

The job aarch64-apple failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
 ---- [debuginfo-lldb] tests/debuginfo/associated-types.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/associated-types.rs` not found in debugger output. errors: (associated-types.rs:40) `[...] { b = -1 b1 = 0 }` (associated-types.rs:54) `[...] { 0 = 4 1 = 5 }` the following subset of check directive(s) was found successfully: (associated-types.rs:44) `DEBUG: breakpoint added, id = 1` (associated-types.rs:46) `DEBUG: breakpoint added, id = 1` (associated-types.rs:50) `DEBUG: breakpoint added, id = 2` (associated-types.rs:58) `DEBUG: breakpoint added, id = 6` (associated-types.rs:60) `(long) b = 7 ` (associated-types.rs:64) `(long) a = 8 ` (associated-types.rs:66) `(int) b = 9 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/associated-types.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/associated-types.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'associated-types.rs' --line 96 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`associated_types::assoc_struct::h8d8cd1269cdac0d5 + 20 at associated-types.rs:96:5, address = 0x0000000100003820 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'associated-types.rs' --line 103 breakpoint set --file 'associated-types.rs' --line 103 Breakpoint 2: where = a`associated_types::assoc_local::h5661331f0d3a41c6 + 112 at associated-types.rs:103:5, address = 0x00000001000038bc breakpoint set --file 'associated-types.rs' --line 107 Breakpoint 3: where = a`associated_types::assoc_arg::hdf08521c4a6a9b72 + 16 at associated-types.rs:107:5, address = 0x00000001000038fc breakpoint set --file 'associated-types.rs' --line 115 Breakpoint 4: where = a`associated_types::assoc_tuple::h7146f3368749b3a0 + 20 at associated-types.rs:115:5, address = 0x0000000100003988 breakpoint set --file 'associated-types.rs' --line 122 Breakpoint 5: where = a`associated_types::assoc_enum::h908113ab2ec37122 + 48 at associated-types.rs:122:13, address = 0x00000001000039e4 breakpoint set --file 'associated-types.rs' --line 125 Breakpoint 6: where = a`associated_types::assoc_enum::h908113ab2ec37122 + 76 at associated-types.rs:125:13, address = 0x0000000100003a00 DEBUG: breakpoint added, id = 2 DEBUG: breakpoint added, id = 3 DEBUG: breakpoint added, id = 4 DEBUG: breakpoint added, id = 5 DEBUG: breakpoint added, id = 6 run Process 17816 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003820 a`associated_types::assoc_struct::h8d8cd1269cdac0d5(arg=(b = -1, b1 = 0)) at associated-types.rs:96:5 93 } 94 95 fn assoc_struct<T: TraitWithAssocType>(arg: Struct<T>) { -> 96 zzz(); // #break ^ 97 } 98 99 fn assoc_local<T: TraitWithAssocType>(x: T) { Target 0: (a) stopped. Process 17816 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/a' (arm64) DEBUG: registering breakpoint callback, id = 6 Error while trying to register breakpoint callback, id = 6, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 5 DEBUG: registering breakpoint callback, id = 5 Error while trying to register breakpoint callback, id = 5, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 4 DEBUG: registering breakpoint callback, id = 4 Error while trying to register breakpoint callback, id = 4, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 3 DEBUG: registering breakpoint callback, id = 3 Error while trying to register breakpoint callback, id = 3, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 2 DEBUG: registering breakpoint callback, id = 2 Error while trying to register breakpoint callback, id = 2, message = error: could not get num args: can't find callable: breakpoint_callback v arg v arg (associated_types::Struct<int>) arg = (b = -1, b1 = 0) v inferred (long) inferred = 1 v explicitly (long) explicitly = 1 (long) explicitly = 1 continue v arg (long) arg = 2 continue v arg ((i32, i64)) arg = (__0 = 4, __1 = 5) v a (int) a = 6 v b (long) b = 7 --- ---- [debuginfo-lldb] tests/debuginfo/borrowed-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/borrowed-struct.rs` not found in debugger output. errors: (borrowed-struct.rs:34) `[...] { x = 10 y = 23.5 }` (borrowed-struct.rs:43) `[...] { x = 11 y = 24.5 }` (borrowed-struct.rs:46) `[...] { x = 13 y = 26.5 }` the following subset of check directive(s) was found successfully: (borrowed-struct.rs:37) `(long) *stack_val_interior_ref_1 = 10 ` (borrowed-struct.rs:40) `(double) *stack_val_interior_ref_2 = 23.5 ` (borrowed-struct.rs:49) `(long) *unique_val_interior_ref_1 = 13 ` (borrowed-struct.rs:52) `(double) *unique_val_interior_ref_2 = 26.5 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/borrowed-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/borrowed-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'borrowed-struct.rs' --line 75 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`borrowed_struct::main::h1aa23764e8762911 + 212 at borrowed-struct.rs:75:5, address = 0x000000010000372c DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 17982 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x000000010000372c a`borrowed_struct::main::h1aa23764e8762911 at borrowed-struct.rs:75:5 72 let unique_val_interior_ref_1: &isize = &unique_val.x; 73 let unique_val_interior_ref_2: &f64 = &unique_val.y; 74 -> 75 zzz(); // #break ^ 76 } 77 78 fn zzz() {()} Target 0: (a) stopped. Process 17982 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/a' (arm64) v *stack_val_ref (borrowed_struct::SomeStruct) *stack_val_ref = (x = 10, y = 23.5) v *stack_val_interior_ref_1 (long) *stack_val_interior_ref_1 = 10 v *stack_val_interior_ref_2 (double) *stack_val_interior_ref_2 = 23.5 v *ref_to_unnamed (borrowed_struct::SomeStruct) *ref_to_unnamed = (x = 11, y = 24.5) v *unique_val_ref (borrowed_struct::SomeStruct) *unique_val_ref = (x = 13, y = 26.5) v *unique_val_interior_ref_1 (long) *unique_val_interior_ref_1 = 13 v *unique_val_interior_ref_2 (double) *unique_val_interior_ref_2 = 26.5 ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/borrowed-tuple.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/borrowed-tuple.rs` not found in debugger output. errors: (borrowed-tuple.rs:22) `[...] { 0 = -14 1 = -19 }` (borrowed-tuple.rs:25) `[...] { 0 = -15 1 = -20 }` (borrowed-tuple.rs:28) `[...] { 0 = -17 1 = -22 }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/borrowed-tuple.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/borrowed-tuple.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'borrowed-tuple.rs' --line 43 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`borrowed_tuple::main::h51ca6a66dfe30c6b + 148 at borrowed-tuple.rs:43:5, address = 0x0000000100003730 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 18012 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003730 a`borrowed_tuple::main::h51ca6a66dfe30c6b at borrowed-tuple.rs:43:5 40 let unique_val: Box<(i16, f32)> = Box::new((-17, -22f32)); 41 let unique_val_ref: &(i16, f32) = &*unique_val; 42 -> 43 zzz(); // #break ^ 44 } 45 46 fn zzz() {()} Target 0: (a) stopped. Process 18012 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/a' (arm64) v *stack_val_ref ((i16, f32)) *stack_val_ref = (__0 = -14, __1 = -19) v *ref_to_unnamed ((i16, f32)) *ref_to_unnamed = (__0 = -15, __1 = -20) v *unique_val_ref ((i16, f32)) *unique_val_ref = (__0 = -17, __1 = -22) ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/box.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/box.rs` not found in debugger output. errors: (box.rs:19) `[...] { 0 = 2 1 = 3.5 }` the following subset of check directive(s) was found successfully: (box.rs:17) `DEBUG: breakpoint added, id = 1` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/box.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/box.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'box.rs' --line 29 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`box::main::h85068c2fe84d5037 + 240 at box.rs:29:5, address = 0x00000001000036a0 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 18064 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x00000001000036a0 a`box::main::h85068c2fe84d5037 at box.rs:29:5 26 let a = Box::new(1); 27 let b = Box::new((2, 3.5f64)); 28 -> 29 zzz(); // #break ^ 30 } 31 32 fn zzz() { () } Target 0: (a) stopped. Process 18064 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/a' (arm64) v *a (int) *a = 1 v *b ((i32, f64)) *b = (__0 = 2, __1 = 3.5) ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/boxed-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/boxed-struct.rs` not found in debugger output. errors: (boxed-struct.rs:19) `[...] { x = 99 y = 999 z = 9999 w = 99999 }` (boxed-struct.rs:22) `[...] { x = 77 y = 777 z = 7777 w = 77777 }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/boxed-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/boxed-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'boxed-struct.rs' --line 61 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`boxed_struct::main::h234d24d921556f4a + 316 at boxed-struct.rs:61:5, address = 0x0000000100003610 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 18081 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003610 a`boxed_struct::main::h234d24d921556f4a at boxed-struct.rs:61:5 58 z: 7777, 59 w: 77777, 60 }); -> 61 zzz(); // #break ^ 62 } 63 64 fn zzz() { () } Target 0: (a) stopped. Process 18081 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/a' (arm64) v *boxed_with_padding (boxed_struct::StructWithSomePadding) *boxed_with_padding = (x = 99, y = 999, z = 9999, w = 99999) v *boxed_with_dtor (boxed_struct::StructWithDestructor) *boxed_with_dtor = (x = 77, y = 777, z = 7777, w = 77777) ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/by-value-self-argument-in-trait-impl.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/by-value-self-argument-in-trait-impl.rs` not found in debugger output. errors: (by-value-self-argument-in-trait-impl.rs:29) `[...] { x = 2222 y = 3333 }` (by-value-self-argument-in-trait-impl.rs:33) `[...] { 0 = 4444.5 1 = 5555 2 = 6666 3 = 7777.5 }` the following subset of check directive(s) was found successfully: (by-value-self-argument-in-trait-impl.rs:25) `(long) self = 1111 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/by-value-self-argument-in-trait-impl.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/by-value-self-argument-in-trait-impl.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'by-value-self-argument-in-trait-impl.rs' --line 45 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`_$LT$isize$u20$as$u20$by_value_self_argument_in_trait_impl..Trait$GT$::method::h5689a465d45db454 + 20 at by-value-self-argument-in-trait-impl.rs:45:9, address = 0x0000000100003b84 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'by-value-self-argument-in-trait-impl.rs' --line 57 DEBUG: breakpoint added, id = 2 Breakpoint 2: where = a`_$LT$by_value_self_argument_in_trait_impl..Struct$u20$as$u20$by_value_self_argument_in_trait_impl..Trait$GT$::method::ha8bf08c412070438 + 28 at by-value-self-argument-in-trait-impl.rs:57:9, address = 0x0000000100003bb4 DEBUG: registering breakpoint callback, id = 2 Error while trying to register breakpoint callback, id = 2, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'by-value-self-argument-in-trait-impl.rs' --line 64 DEBUG: breakpoint added, id = 3 Breakpoint 3: where = a`_$LT$$LP$f64$C$isize$C$isize$C$f64$RP$$u20$as$u20$by_value_self_argument_in_trait_impl..Trait$GT$::method::h9e6ac380550b38fd + 20 at by-value-self-argument-in-trait-impl.rs:64:9, address = 0x0000000100003be0 DEBUG: registering breakpoint callback, id = 3 Error while trying to register breakpoint callback, id = 3, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 18136 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003b84 a`_$LT$isize$u20$as$u20$by_value_self_argument_in_trait_impl..Trait$GT$::method::h5689a465d45db454(self=1111) at by-value-self-argument-in-trait-impl.rs:45:9 42 43 impl Trait for isize { 44 fn method(self) -> isize { -> 45 zzz(); // #break ^ 46 self 47 } 48 } Target 0: (a) stopped. Process 18136 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/a' (arm64) v self (long) self = 1111 v self v self (by_value_self_argument_in_trait_impl::Struct) self = (x = 2222, y = 3333) v self v self ((f64, isize, isize, f64)) self = (__0 = 4444.5, __1 = 5555, __2 = 6666, __3 = 7777.5) quit ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/c-style-enum-in-composite.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/c-style-enum-in-composite.rs` not found in debugger output. errors: (c-style-enum-in-composite.rs:33) `[...] { 0 = 0 1 = OneHundred }` (c-style-enum-in-composite.rs:36) `[...] { 0 = { 0 = 1 1 = OneThousand } 1 = 2 }` (c-style-enum-in-composite.rs:39) `[...] { 0 = OneThousand 1 = MountainView 2 = OneMillion 3 = Vienna }` (c-style-enum-in-composite.rs:42) `[...] { a = 3 b = OneMillion c = 4 d = Toronto e = 5 }` (c-style-enum-in-composite.rs:45) `[...] { a = 6 b = OneHundred c = 7 d = Vienna e = 8 }` (c-style-enum-in-composite.rs:48) `[...] { a = OneMillion b = MountainView c = OneThousand d = Toronto }` (c-style-enum-in-composite.rs:51) `[...] { 0 = { a = OneHundred b = Vienna } 1 = 9 }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/c-style-enum-in-composite.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/c-style-enum-in-composite.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust --- continue v a (long) a = 5 v b ((u32, u32)) b = (__0 = 6, __1 = 7) v h (short) h = 8 v i v i (destructured_fn_argument::Struct) i = (a = 9, b = 10) v j (short) j = 11 v k v k (long) k = 12 (int) l = 13 continue v m (long) m = 14 --- (long) p = 19 v q (int) q = 20 v r (destructured_fn_argument::Struct) r = (a = 21, b = 22) v s (int) s = 24 v t (long) t = 23 --- (int) x = 28 v y (long) y = 29 v z (int) z = 30 (long) ae = 31 v oe v oe (int) oe = 32 v ue (unsigned short) ue = 33 v aa v aa ((isize, isize)) aa = (__0 = 34, __1 = 35) v bb v bb ((isize, isize)) bb = (__0 = 36, __1 = 37) v cc (long) cc = 38 continue v dd v dd ((isize, isize, isize)) dd = (__0 = 40, __1 = 41, __2 = 42) v *ee v *ee ((isize, isize, isize)) *ee = (__0 = 43, __1 = 44, __2 = 45) v *ff v *ff (long) *ff = 46 v gg ((isize, isize)) gg = (__0 = 47, __1 = 48) v *hh v *hh (int) *hh = 50 v ii (int) ii = 51 continue v *jj v *jj (int) *jj = 52 v kk v kk (double) kk = 53 (long) ll = 54 continue v mm v mm (double) mm = 55 v *nn (long) *nn = 56 v oo (long) oo = 57 v pp v pp (long) pp = 58 v qq (long) qq = 59 v rr (long) rr = 60 v ss v ss (long) ss = 61 (long) tt = 62 continue quit ------------------------------------------ ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/destructured-local.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/destructured-local.rs` not found in debugger output. errors: (destructured-local.rs:137) `[...] { 0 = 6 1 = 7 }` (destructured-local.rs:142) `[...] { a = 9 b = 10 }` (destructured-local.rs:164) `[...] { a = 21 b = 22 }` (destructured-local.rs:191) `[...] { 0 = 34 1 = 35 }` (destructured-local.rs:194) `[...] { 0 = 36 1 = 37 }` (destructured-local.rs:200) `[...] { 0 = 40 1 = 41 2 = 42 }` (destructured-local.rs:203) `[...] { 0 = 43 1 = 44 2 = 45 }` (destructured-local.rs:209) `[...] { 0 = 47 1 = 48 }` the following subset of check directive(s) was found successfully: (destructured-local.rs:123) `DEBUG: breakpoint added, id = 1` (destructured-local.rs:125) `(bool) b = false ` (destructured-local.rs:128) `(long) c = 2 ` (destructured-local.rs:130) `(unsigned short) d = 3 ` (destructured-local.rs:132) `(unsigned short) e = 4 ` (destructured-local.rs:135) `(long) f = 5 ` (destructured-local.rs:140) `(short) h = 8 ` (destructured-local.rs:144) `(short) j = 11 ` (destructured-local.rs:147) `(long) k = 12 ` (destructured-local.rs:149) `(int) l = 13 ` (destructured-local.rs:152) `(int) m = 14 ` (destructured-local.rs:154) `(int) n = 16 ` (destructured-local.rs:157) `(int) o = 18 ` (destructured-local.rs:160) `(long) p = 19 ` (destructured-local.rs:162) `(int) q = 20 ` (destructured-local.rs:167) `(int) s = 24 ` (destructured-local.rs:169) `(long) t = 23 ` (destructured-local.rs:172) `(int) u = 25 ` (destructured-local.rs:174) `(int) v = 26 ` (destructured-local.rs:176) `(int) w = 27 ` (destructured-local.rs:178) `(int) x = 28 ` (destructured-local.rs:180) `(long) y = 29 ` (destructured-local.rs:182) `(int) z = 30 ` (destructured-local.rs:184) `(long) ae = 31 ` (destructured-local.rs:186) `(int) oe = 32 ` (destructured-local.rs:188) `(int) ue = 33 ` (destructured-local.rs:197) `(int) cc = 38 ` (destructured-local.rs:206) `(int) *ff = 46 ` (destructured-local.rs:212) `(int) *hh = 50 ` (destructured-local.rs:215) `(int) ii = 51 ` (destructured-local.rs:218) `(int) *jj = 52 ` (destructured-local.rs:221) `(double) kk = 53 ` (destructured-local.rs:224) `(long) ll = 54 ` (destructured-local.rs:227) `(double) mm = 55 ` (destructured-local.rs:230) `(long) *nn = 56 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/destructured-local.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/destructured-local.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'destructured-local.rs' --line 317 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`destructured_local::main::hf45a2dbd8dea5d55 + 944 at destructured-local.rs:317:5, address = 0x00000001000036a4 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 18419 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x00000001000036a4 a`destructured_local::main::hf45a2dbd8dea5d55 at destructured-local.rs:317:5 314 // tuple struct with ref binding 315 let &TupleStruct(mm, ref nn) = &TupleStruct(55.0, 56); 316 -> 317 zzz(); // #break ^ 318 } 319 320 fn zzz() { () } Target 0: (a) stopped. Process 18419 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/a' (arm64) (long) a = 1 v b (bool) b = false v c v c (long) c = 2 v d (unsigned short) d = 3 (unsigned short) e = 4 v f (long) f = 5 v g v g ((u32, u32)) g = (__0 = 6, __1 = 7) (short) h = 8 v i v i (destructured_local::Struct) i = (a = 9, b = 10) v j (short) j = 11 v k (long) k = 12 (int) l = 13 v m (int) m = 14 v n --- (long) p = 19 v q (int) q = 20 v r (destructured_local::Struct) r = (a = 21, b = 22) (int) s = 24 v t (long) t = 23 v u v u (int) u = 25 v v (int) v = 26 v w (int) w = 27 (int) x = 28 v y (long) y = 29 v z v z (int) z = 30 (long) ae = 31 v oe v oe (int) oe = 32 v ue (int) ue = 33 v aa ((i32, i32)) aa = (__0 = 34, __1 = 35) v bb ((i32, i32)) bb = (__0 = 36, __1 = 37) (int) cc = 38 v dd v dd ((i32, i32, i32)) dd = (__0 = 40, __1 = 41, __2 = 42) v *ee ((i32, i32, i32)) *ee = (__0 = 43, __1 = 44, __2 = 45) v *ff (int) *ff = 46 v gg ((i32, i32)) gg = (__0 = 47, __1 = 48) v *hh (int) *hh = 50 (int) ii = 51 v *jj v *jj (int) *jj = 52 v kk (double) kk = 53 (long) ll = 54 v mm v mm (double) mm = 55 v *nn (long) *nn = 56 ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/evec-in-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/evec-in-struct.rs` not found in debugger output. errors: (evec-in-struct.rs:27) `[...] { x = { [0] = 0 [1] = 1 [2] = 2 } y = -3 z = { [0] = 4.5 [1] = 5.5 } }` (evec-in-struct.rs:29) `[...] { x = { [0] = 6 [1] = 7 [2] = 8 } y = { [0] = { [0] = 9 [1] = 10 } [1] = { [0] = 11 [1] = 12 } } }` (evec-in-struct.rs:32) `[...] { x = { [0] = 13 [1] = 14 } y = { [0] = 15 [1] = 16 } }` (evec-in-struct.rs:35) `[...] { x = { [0] = 17 [1] = 18 [2] = 19 [3] = 20 [4] = 21 } }` (evec-in-struct.rs:38) `[...] { x = { [0] = 22 [1] = 23 } y = { [0] = 24 [1] = 25 } }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/evec-in-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/evec-in-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'evec-in-struct.rs' --line 96 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`evec_in_struct::main::h33db7ab609c5359c + 336 at evec-in-struct.rs:96:5, address = 0x0000000100003d08 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 18515 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003d08 a`evec_in_struct::main::h33db7ab609c5359c at evec-in-struct.rs:96:5 93 y: [24, 25] 94 }; 95 -> 96 zzz(); // #break ^ 97 } 98 99 fn zzz() { () } Target 0: (a) stopped. Process 18515 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/a' (arm64) v no_padding1 (evec_in_struct::NoPadding1) no_padding1 = { x = ([0] = 0, [1] = 1, [2] = 2) y = -3 z = ([0] = 4.5, [1] = 5.5) } v no_padding2 (evec_in_struct::NoPadding2) no_padding2 = { x = ([0] = 6, [1] = 7, [2] = 8) y = { [0] = ([0] = 9, [1] = 10) [1] = ([0] = 11, [1] = 12) } } v struct_internal_padding (evec_in_struct::StructInternalPadding) struct_internal_padding = { x = ([0] = 13, [1] = 14) y = ([0] = 15, [1] = 16) } v single_vec (evec_in_struct::SingleVec) single_vec = { x = ([0] = 17, [1] = 18, [2] = 19, [3] = 20, [4] = 21) } v struct_padded_at_end (evec_in_struct::StructPaddedAtEnd) struct_padded_at_end = { x = ([0] = 22, [1] = 23) y = ([0] = 24, [1] = 25) } ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/generic-function.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/generic-function.rs` not found in debugger output. errors: (generic-function.rs:44) `[...] { a = 6 b = 7.5 }` the following subset of check directive(s) was found successfully: (generic-function.rs:30) `DEBUG: breakpoint added, id = 1` (generic-function.rs:32) `(double) *t1 = 2.5 ` (generic-function.rs:36) `(double) *t0 = 3.5 ` (generic-function.rs:38) `(unsigned short) *t1 = 4 ` (generic-function.rs:42) `(int) *t0 = 5 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/generic-function.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/generic-function.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'generic-function.rs' --line 58 DEBUG: breakpoint added, id = 1 Breakpoint 1: 3 locations. DEBUG: registering breakpoint callback, id = 1 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 18748 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.3 frame #0: 0x0000000100003ac4 a`generic_function::dup_tup::hd80b2c4504c4fecb(t0=0x0000000100003c60, t1=0x0000000100003c68) at generic-function.rs:58:5 55 56 fn dup_tup<T0: Clone, T1: Clone>(t0: &T0, t1: &T1) -> ((T0, T1), (T1, T0)) { 57 let ret = ((t0.clone(), t1.clone()), (t1.clone(), t0.clone())); -> 58 zzz(); // #break ^ 59 ret 60 } 61 Target 0: (a) stopped. Process 18748 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/a' (arm64) v *t0 (int) *t0 = 1 v *t1 (double) *t1 = 2.5 v *t0 v *t0 (double) *t0 = 3.5 v *t1 (unsigned short) *t1 = 4 v *t0 v *t0 (int) *t0 = 5 v *t1 (generic_function::Struct) *t1 = (a = 6, b = 7.5) quit ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/generic-method-on-generic-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/generic-method-on-generic-struct.rs` not found in debugger output. errors: (generic-method-on-generic-struct.rs:59) `[...] { x = { 0 = 8888 1 = -8888 } }` (generic-method-on-generic-struct.rs:68) `[...] { x = { 0 = 8888 1 = -8888 } }` (generic-method-on-generic-struct.rs:77) `[...] { x = 1234.5 }` (generic-method-on-generic-struct.rs:86) `[...] { x = 1234.5 }` (generic-method-on-generic-struct.rs:95) `[...] { x = 1234.5 }` the following subset of check directive(s) was found successfully: (generic-method-on-generic-struct.rs:61) `(long) arg1 = -1 ` (generic-method-on-generic-struct.rs:63) `(unsigned short) arg2 = 2 ` (generic-method-on-generic-struct.rs:70) `(long) arg1 = -3 ` (generic-method-on-generic-struct.rs:72) `(short) arg2 = -4 ` (generic-method-on-generic-struct.rs:79) `(long) arg1 = -5 ` (generic-method-on-generic-struct.rs:81) `(int) arg2 = -6 ` (generic-method-on-generic-struct.rs:88) `(long) arg1 = -7 ` (generic-method-on-generic-struct.rs:90) `(long) arg2 = -8 ` (generic-method-on-generic-struct.rs:97) `(long) arg1 = -9 ` (generic-method-on-generic-struct.rs:99) `(float) arg2 = -10.5 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/generic-method-on-generic-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/generic-method-on-generic-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'generic-method-on-generic-struct.rs' --line 113 DEBUG: breakpoint added, id = 1 Breakpoint 1: 2 locations. DEBUG: registering breakpoint callback, id = 1 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'generic-method-on-generic-struct.rs' --line 118 DEBUG: breakpoint added, id = 2 Breakpoint 2: 2 locations. DEBUG: registering breakpoint callback, id = 2 DEBUG: registering breakpoint callback, id = 2 Error while trying to register breakpoint callback, id = 2, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'generic-method-on-generic-struct.rs' --line 123 DEBUG: breakpoint added, id = 3 DEBUG: breakpoint added, id = 3 Breakpoint 3: where = a`generic_method_on_generic_struct::Struct$LT$T1$GT$::self_owned::hd403f43cf4e0274e + 28 at generic-method-on-generic-struct.rs:123:9, address = 0x00000001000033ac DEBUG: registering breakpoint callback, id = 3 Error while trying to register breakpoint callback, id = 3, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 18761 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.2 frame #0: 0x00000001000032b4 a`generic_method_on_generic_struct::Struct$LT$T1$GT$::self_by_ref::hdfdbc09ff5f9d636(self=0x000000016fdfd2f0, arg1=-1, arg2=2) at generic-method-on-generic-struct.rs:113:9 110 impl<T1> Struct<T1> { 111 112 fn self_by_ref<T2>(&self, arg1: isize, arg2: T2) -> isize { -> 113 zzz(); // #break ^ 114 arg1 115 } 116 Target 0: (a) stopped. Process 18761 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/a' (arm64) v *self (generic_method_on_generic_struct::Struct<(u32, i32)>) *self = { x = (__0 = 8888, __1 = -8888) } v arg1 (long) arg1 = -1 v arg2 (unsigned short) arg2 = 2 v self v self (generic_method_on_generic_struct::Struct<(u32, i32)>) self = { x = (__0 = 8888, __1 = -8888) } v arg1 (long) arg1 = -3 v arg2 (short) arg2 = -4 v *self v *self (generic_method_on_generic_struct::Struct<double>) *self = (x = 1234.5) v arg1 (long) arg1 = -5 v arg2 (int) arg2 = -6 v self v self (generic_method_on_generic_struct::Struct<double>) self = (x = 1234.5) v arg1 (long) arg1 = -7 v arg2 (long) arg2 = -8 v *self v *self (generic_method_on_generic_struct::Struct<double>) *self = (x = 1234.5) v arg1 (long) arg1 = -9 v arg2 (float) arg2 = -10.5 quit ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/generic-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/generic-struct.rs` not found in debugger output. errors: (generic-struct.rs:21) `[...]AGenericStruct<int, int>) int_int = { key = 0 value = 1 }` (generic-struct.rs:23) `[...]AGenericStruct<int, double>) int_float = { key = 2 value = 3.5 }` (generic-struct.rs:25) `[...]AGenericStruct<double, int>) float_int = { key = 4.5 value = 5 }` (generic-struct.rs:28) `[...]AGenericStruct<double, generic_struct::AGenericStruct<int, double> >) float_int_float = { key = 6.5 value = { key = 7 value = 8.5 } }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/generic-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/generic-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'generic-struct.rs' --line 70 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`generic_struct::main::h59c75f4357185c3e + 80 at generic-struct.rs:70:5, address = 0x0000000100003d14 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 18873 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003d14 a`generic_struct::main::h59c75f4357185c3e at generic-struct.rs:70:5 67 value: AGenericStruct { key: 7, value: 8.5f64 }, 68 }; 69 -> 70 zzz(); // #break ^ 71 } 72 73 fn zzz() { () } Target 0: (a) stopped. Process 18873 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/a' (arm64) v int_int (generic_struct::AGenericStruct<int, int>) int_int = (key = 0, value = 1) v int_float (generic_struct::AGenericStruct<int, double>) int_float = (key = 2, value = 3.5) v float_int (generic_struct::AGenericStruct<double, int>) float_int = (key = 4.5, value = 5) v float_int_float (generic_struct::AGenericStruct<double, generic_struct::AGenericStruct<int, double> >) float_int_float = { key = 6.5 value = (key = 7, value = 8.5) } ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/issue-22656.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/issue-22656.rs` not found in debugger output. errors: (issue-22656.rs:15) `[...] { x = y = 123 z = w = 456 }` the following subset of check directive(s) was found successfully: (issue-22656.rs:13) `(alloc::vec::Vec<int, alloc::alloc::Global>) v = size=3 { [0] = 1 [1] = 2 [2] = 3 } ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/issue-22656.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/issue-22656.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust 
@jieyouxu
Copy link
Member

@bors p=5

@bors
Copy link
Collaborator

bors commented Nov 26, 2024

⌛ Testing commit cee0476 with merge 22767f7...

bors added a commit to rust-lang-ci/rust that referenced this pull request Nov 26, 2024
…iaskrgr Rollup of 8 pull requests Successful merges: - rust-lang#132605 (CI: increase timeout from 4h to 6h) - rust-lang#133042 (btree: add `{Entry,VacantEntry}::insert_entry`) - rust-lang#133070 (Lexer tweaks) - rust-lang#133134 (Don't use a SyntheticProvider for literally every type) - rust-lang#133411 (the emscripten OS no longer exists on non-wasm targets) - rust-lang#133419 (Added a doc test for std::path::strip_prefix) - rust-lang#133430 (Tweak parameter mismatch explanation to not say `{unknown}`) - rust-lang#133435 (miri: disable test_downgrade_observe test on macOS) r? `@ghost` `@rustbot` modify labels: rollup
@rust-log-analyzer
Copy link
Collaborator

The job x86_64-gnu-tools failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
curl: (22) The requested URL returned error: 502 curl: (22) The requested URL returned error: 502 ERROR: failed to download llvm from ci HELP: There could be two reasons behind this: 1) The host triple is not supported for `download-ci-llvm`. 2) Old builds get deleted after a certain time. HELP: In either case, disable `download-ci-llvm` in your config.toml: [llvm] download-ci-llvm = false Build completed unsuccessfully in 0:00:22 
@bors
Copy link
Collaborator

bors commented Nov 26, 2024

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Nov 26, 2024
@matthiaskrgr
Copy link
Member Author

@bors retry

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Nov 26, 2024
@bors
Copy link
Collaborator

bors commented Nov 26, 2024

⌛ Testing commit cee0476 with merge 485a343...

bors added a commit to rust-lang-ci/rust that referenced this pull request Nov 26, 2024
…iaskrgr Rollup of 8 pull requests Successful merges: - rust-lang#132605 (CI: increase timeout from 4h to 6h) - rust-lang#133042 (btree: add `{Entry,VacantEntry}::insert_entry`) - rust-lang#133070 (Lexer tweaks) - rust-lang#133134 (Don't use a SyntheticProvider for literally every type) - rust-lang#133411 (the emscripten OS no longer exists on non-wasm targets) - rust-lang#133419 (Added a doc test for std::path::strip_prefix) - rust-lang#133430 (Tweak parameter mismatch explanation to not say `{unknown}`) - rust-lang#133435 (miri: disable test_downgrade_observe test on macOS) r? `@ghost` `@rustbot` modify labels: rollup
@rust-log-analyzer
Copy link
Collaborator

The job aarch64-apple failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
 ---- [debuginfo-lldb] tests/debuginfo/associated-types.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/associated-types.rs` not found in debugger output. errors: (associated-types.rs:40) `[...] { b = -1 b1 = 0 }` (associated-types.rs:54) `[...] { 0 = 4 1 = 5 }` the following subset of check directive(s) was found successfully: (associated-types.rs:44) `DEBUG: breakpoint added, id = 1` (associated-types.rs:46) `DEBUG: breakpoint added, id = 1` (associated-types.rs:50) `DEBUG: breakpoint added, id = 2` (associated-types.rs:58) `DEBUG: breakpoint added, id = 6` (associated-types.rs:60) `(long) b = 7 ` (associated-types.rs:64) `(long) a = 8 ` (associated-types.rs:66) `(int) b = 9 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/associated-types.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/associated-types.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'associated-types.rs' --line 96 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`associated_types::assoc_struct::h8d8cd1269cdac0d5 + 20 at associated-types.rs:96:5, address = 0x0000000100003820 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'associated-types.rs' --line 103 breakpoint set --file 'associated-types.rs' --line 103 Breakpoint 2: where = a`associated_types::assoc_local::h5661331f0d3a41c6 + 112 at associated-types.rs:103:5, address = 0x00000001000038bc breakpoint set --file 'associated-types.rs' --line 107 Breakpoint 3: where = a`associated_types::assoc_arg::hdf08521c4a6a9b72 + 16 at associated-types.rs:107:5, address = 0x00000001000038fc breakpoint set --file 'associated-types.rs' --line 115 Breakpoint 4: where = a`associated_types::assoc_tuple::h7146f3368749b3a0 + 20 at associated-types.rs:115:5, address = 0x0000000100003988 breakpoint set --file 'associated-types.rs' --line 122 Breakpoint 5: where = a`associated_types::assoc_enum::h908113ab2ec37122 + 48 at associated-types.rs:122:13, address = 0x00000001000039e4 breakpoint set --file 'associated-types.rs' --line 125 Breakpoint 6: where = a`associated_types::assoc_enum::h908113ab2ec37122 + 76 at associated-types.rs:125:13, address = 0x0000000100003a00 DEBUG: breakpoint added, id = 2 DEBUG: breakpoint added, id = 3 DEBUG: breakpoint added, id = 4 DEBUG: breakpoint added, id = 5 DEBUG: breakpoint added, id = 6 run Process 15872 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003820 a`associated_types::assoc_struct::h8d8cd1269cdac0d5(arg=(b = -1, b1 = 0)) at associated-types.rs:96:5 93 } 94 95 fn assoc_struct<T: TraitWithAssocType>(arg: Struct<T>) { -> 96 zzz(); // #break ^ 97 } 98 99 fn assoc_local<T: TraitWithAssocType>(x: T) { Target 0: (a) stopped. Process 15872 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/associated-types.lldb/a' (arm64) DEBUG: registering breakpoint callback, id = 6 Error while trying to register breakpoint callback, id = 6, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 5 DEBUG: registering breakpoint callback, id = 5 Error while trying to register breakpoint callback, id = 5, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 4 DEBUG: registering breakpoint callback, id = 4 Error while trying to register breakpoint callback, id = 4, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 3 DEBUG: registering breakpoint callback, id = 3 Error while trying to register breakpoint callback, id = 3, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 2 DEBUG: registering breakpoint callback, id = 2 Error while trying to register breakpoint callback, id = 2, message = error: could not get num args: can't find callable: breakpoint_callback v arg v arg (associated_types::Struct<int>) arg = (b = -1, b1 = 0) v inferred (long) inferred = 1 v explicitly (long) explicitly = 1 (long) explicitly = 1 continue v arg (long) arg = 2 continue v arg ((i32, i64)) arg = (__0 = 4, __1 = 5) v a (int) a = 6 v b (long) b = 7 --- ---- [debuginfo-lldb] tests/debuginfo/borrowed-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/borrowed-struct.rs` not found in debugger output. errors: (borrowed-struct.rs:34) `[...] { x = 10 y = 23.5 }` (borrowed-struct.rs:43) `[...] { x = 11 y = 24.5 }` (borrowed-struct.rs:46) `[...] { x = 13 y = 26.5 }` the following subset of check directive(s) was found successfully: (borrowed-struct.rs:37) `(long) *stack_val_interior_ref_1 = 10 ` (borrowed-struct.rs:40) `(double) *stack_val_interior_ref_2 = 23.5 ` (borrowed-struct.rs:49) `(long) *unique_val_interior_ref_1 = 13 ` (borrowed-struct.rs:52) `(double) *unique_val_interior_ref_2 = 26.5 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/borrowed-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/borrowed-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'borrowed-struct.rs' --line 75 breakpoint set --file 'borrowed-struct.rs' --line 75 Breakpoint 1: where = a`borrowed_struct::main::h1aa23764e8762911 + 212 at borrowed-struct.rs:75:5, address = 0x000000010000372c DEBUG: breakpoint added, id = 1 run Process 16037 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x000000010000372c a`borrowed_struct::main::h1aa23764e8762911 at borrowed-struct.rs:75:5 72 let unique_val_interior_ref_1: &isize = &unique_val.x; 73 let unique_val_interior_ref_2: &f64 = &unique_val.y; 74 -> 75 zzz(); // #break ^ 76 } 77 78 fn zzz() {()} Target 0: (a) stopped. Process 16037 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-struct.lldb/a' (arm64) DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback v *stack_val_ref v *stack_val_ref (borrowed_struct::SomeStruct) *stack_val_ref = (x = 10, y = 23.5) v *stack_val_interior_ref_1 (long) *stack_val_interior_ref_1 = 10 v *stack_val_interior_ref_2 (double) *stack_val_interior_ref_2 = 23.5 v *ref_to_unnamed (borrowed_struct::SomeStruct) *ref_to_unnamed = (x = 11, y = 24.5) v *unique_val_ref (borrowed_struct::SomeStruct) *unique_val_ref = (x = 13, y = 26.5) v *unique_val_interior_ref_1 (long) *unique_val_interior_ref_1 = 13 v *unique_val_interior_ref_2 (double) *unique_val_interior_ref_2 = 26.5 ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/borrowed-tuple.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/borrowed-tuple.rs` not found in debugger output. errors: (borrowed-tuple.rs:22) `[...] { 0 = -14 1 = -19 }` (borrowed-tuple.rs:25) `[...] { 0 = -15 1 = -20 }` (borrowed-tuple.rs:28) `[...] { 0 = -17 1 = -22 }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/borrowed-tuple.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/borrowed-tuple.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'borrowed-tuple.rs' --line 43 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`borrowed_tuple::main::h51ca6a66dfe30c6b + 148 at borrowed-tuple.rs:43:5, address = 0x0000000100003730 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 16061 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003730 a`borrowed_tuple::main::h51ca6a66dfe30c6b at borrowed-tuple.rs:43:5 40 let unique_val: Box<(i16, f32)> = Box::new((-17, -22f32)); 41 let unique_val_ref: &(i16, f32) = &*unique_val; 42 -> 43 zzz(); // #break ^ 44 } 45 46 fn zzz() {()} Target 0: (a) stopped. Process 16061 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/borrowed-tuple.lldb/a' (arm64) v *stack_val_ref ((i16, f32)) *stack_val_ref = (__0 = -14, __1 = -19) v *ref_to_unnamed ((i16, f32)) *ref_to_unnamed = (__0 = -15, __1 = -20) v *unique_val_ref ((i16, f32)) *unique_val_ref = (__0 = -17, __1 = -22) ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/box.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/box.rs` not found in debugger output. errors: (box.rs:19) `[...] { 0 = 2 1 = 3.5 }` the following subset of check directive(s) was found successfully: (box.rs:17) `DEBUG: breakpoint added, id = 1` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/box.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/box.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'box.rs' --line 29 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`box::main::h85068c2fe84d5037 + 240 at box.rs:29:5, address = 0x00000001000036a0 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 16123 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x00000001000036a0 a`box::main::h85068c2fe84d5037 at box.rs:29:5 26 let a = Box::new(1); 27 let b = Box::new((2, 3.5f64)); 28 -> 29 zzz(); // #break ^ 30 } 31 32 fn zzz() { () } Target 0: (a) stopped. Process 16123 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/box.lldb/a' (arm64) v *a (int) *a = 1 v *b ((i32, f64)) *b = (__0 = 2, __1 = 3.5) ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/boxed-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/boxed-struct.rs` not found in debugger output. errors: (boxed-struct.rs:19) `[...] { x = 99 y = 999 z = 9999 w = 99999 }` (boxed-struct.rs:22) `[...] { x = 77 y = 777 z = 7777 w = 77777 }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/boxed-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/boxed-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'boxed-struct.rs' --line 61 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`boxed_struct::main::h234d24d921556f4a + 316 at boxed-struct.rs:61:5, address = 0x0000000100003610 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 16147 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003610 a`boxed_struct::main::h234d24d921556f4a at boxed-struct.rs:61:5 58 z: 7777, 59 w: 77777, 60 }); -> 61 zzz(); // #break ^ 62 } 63 64 fn zzz() { () } Target 0: (a) stopped. Process 16147 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/boxed-struct.lldb/a' (arm64) v *boxed_with_padding (boxed_struct::StructWithSomePadding) *boxed_with_padding = (x = 99, y = 999, z = 9999, w = 99999) v *boxed_with_dtor (boxed_struct::StructWithDestructor) *boxed_with_dtor = (x = 77, y = 777, z = 7777, w = 77777) ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/by-value-self-argument-in-trait-impl.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/by-value-self-argument-in-trait-impl.rs` not found in debugger output. errors: (by-value-self-argument-in-trait-impl.rs:29) `[...] { x = 2222 y = 3333 }` (by-value-self-argument-in-trait-impl.rs:33) `[...] { 0 = 4444.5 1 = 5555 2 = 6666 3 = 7777.5 }` the following subset of check directive(s) was found successfully: (by-value-self-argument-in-trait-impl.rs:25) `(long) self = 1111 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/by-value-self-argument-in-trait-impl.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/by-value-self-argument-in-trait-impl.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'by-value-self-argument-in-trait-impl.rs' --line 45 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`_$LT$isize$u20$as$u20$by_value_self_argument_in_trait_impl..Trait$GT$::method::h5689a465d45db454 + 20 at by-value-self-argument-in-trait-impl.rs:45:9, address = 0x0000000100003b84 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'by-value-self-argument-in-trait-impl.rs' --line 57 DEBUG: breakpoint added, id = 2 Breakpoint 2: where = a`_$LT$by_value_self_argument_in_trait_impl..Struct$u20$as$u20$by_value_self_argument_in_trait_impl..Trait$GT$::method::ha8bf08c412070438 + 28 at by-value-self-argument-in-trait-impl.rs:57:9, address = 0x0000000100003bb4 DEBUG: registering breakpoint callback, id = 2 Error while trying to register breakpoint callback, id = 2, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'by-value-self-argument-in-trait-impl.rs' --line 64 DEBUG: breakpoint added, id = 3 Breakpoint 3: where = a`_$LT$$LP$f64$C$isize$C$isize$C$f64$RP$$u20$as$u20$by_value_self_argument_in_trait_impl..Trait$GT$::method::h9e6ac380550b38fd + 20 at by-value-self-argument-in-trait-impl.rs:64:9, address = 0x0000000100003be0 DEBUG: registering breakpoint callback, id = 3 Error while trying to register breakpoint callback, id = 3, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 16191 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003b84 a`_$LT$isize$u20$as$u20$by_value_self_argument_in_trait_impl..Trait$GT$::method::h5689a465d45db454(self=1111) at by-value-self-argument-in-trait-impl.rs:45:9 42 43 impl Trait for isize { 44 fn method(self) -> isize { -> 45 zzz(); // #break ^ 46 self 47 } 48 } Target 0: (a) stopped. Process 16191 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/by-value-self-argument-in-trait-impl.lldb/a' (arm64) v self (long) self = 1111 v self v self (by_value_self_argument_in_trait_impl::Struct) self = (x = 2222, y = 3333) v self v self ((f64, isize, isize, f64)) self = (__0 = 4444.5, __1 = 5555, __2 = 6666, __3 = 7777.5) quit ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/c-style-enum-in-composite.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/c-style-enum-in-composite.rs` not found in debugger output. errors: (c-style-enum-in-composite.rs:33) `[...] { 0 = 0 1 = OneHundred }` (c-style-enum-in-composite.rs:36) `[...] { 0 = { 0 = 1 1 = OneThousand } 1 = 2 }` (c-style-enum-in-composite.rs:39) `[...] { 0 = OneThousand 1 = MountainView 2 = OneMillion 3 = Vienna }` (c-style-enum-in-composite.rs:42) `[...] { a = 3 b = OneMillion c = 4 d = Toronto e = 5 }` (c-style-enum-in-composite.rs:45) `[...] { a = 6 b = OneHundred c = 7 d = Vienna e = 8 }` (c-style-enum-in-composite.rs:48) `[...] { a = OneMillion b = MountainView c = OneThousand d = Toronto }` (c-style-enum-in-composite.rs:51) `[...] { 0 = { a = OneHundred b = Vienna } 1 = 9 }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/c-style-enum-in-composite.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/c-style-enum-in-composite.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/c-style-enum-in-composite.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust --- continue v a (long) a = 5 v b ((u32, u32)) b = (__0 = 6, __1 = 7) v h (short) h = 8 v i v i (destructured_fn_argument::Struct) i = (a = 9, b = 10) v j (short) j = 11 v k v k (long) k = 12 (int) l = 13 continue v m (long) m = 14 --- (long) p = 19 v q (int) q = 20 v r (destructured_fn_argument::Struct) r = (a = 21, b = 22) v s (int) s = 24 v t (long) t = 23 --- (int) x = 28 v y (long) y = 29 v z (int) z = 30 (long) ae = 31 v oe v oe (int) oe = 32 v ue (unsigned short) ue = 33 v aa v aa ((isize, isize)) aa = (__0 = 34, __1 = 35) v bb v bb ((isize, isize)) bb = (__0 = 36, __1 = 37) v cc (long) cc = 38 continue v dd v dd ((isize, isize, isize)) dd = (__0 = 40, __1 = 41, __2 = 42) v *ee v *ee ((isize, isize, isize)) *ee = (__0 = 43, __1 = 44, __2 = 45) v *ff v *ff (long) *ff = 46 v gg ((isize, isize)) gg = (__0 = 47, __1 = 48) v *hh v *hh (int) *hh = 50 v ii (int) ii = 51 continue v *jj v *jj (int) *jj = 52 v kk v kk (double) kk = 53 (long) ll = 54 continue v mm v mm (double) mm = 55 v *nn (long) *nn = 56 v oo (long) oo = 57 v pp v pp (long) pp = 58 v qq (long) qq = 59 v rr (long) rr = 60 v ss v ss (long) ss = 61 (long) tt = 62 continue quit ------------------------------------------ ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/destructured-for-loop-variable.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/destructured-for-loop-variable.rs` not found in debugger output. errors: (destructured-for-loop-variable.rs:135) `[...] { x = 3537 y = 35437.5 z = true }` (destructured-for-loop-variable.rs:139) `[...] { 0 = 34903493 1 = 232323 }` the following subset of check directive(s) was found successfully: (destructured-for-loop-variable.rs:80) `(short) x = 400 ` (destructured-for-loop-variable.rs:82) `(float) y = 401.5 ` (destructured-for-loop-variable.rs:84) `(bool) z = true ` (destructured-for-loop-variable.rs:89) `(char) _i8 = 0x6f ` (destructured-for-loop-variable.rs:91) `(unsigned char) _u8 = 0x70 ` (destructured-for-loop-variable.rs:93) `(short) _i16 = -113 ` (destructured-for-loop-variable.rs:95) `(unsigned short) _u16 = 114 ` (destructured-for-loop-variable.rs:97) `(int) _i32 = -115 ` (destructured-for-loop-variable.rs:99) `(unsigned int) _u32 = 116 ` (destructured-for-loop-variable.rs:101) `(long) _i64 = -117 ` (destructured-for-loop-variable.rs:103) `(unsigned long) _u64 = 118 ` (destructured-for-loop-variable.rs:105) `(float) _f32 = 119.5 ` (destructured-for-loop-variable.rs:107) `(double) _f64 = 120.5 ` (destructured-for-loop-variable.rs:112) `(int) v1 = 80000 ` (destructured-for-loop-variable.rs:114) `(short) x1 = 8000 ` (destructured-for-loop-variable.rs:116) `(float) *y1 = 80001.5 ` (destructured-for-loop-variable.rs:118) `(bool) z1 = false ` (destructured-for-loop-variable.rs:120) `(short) *x2 = -30000 ` (destructured-for-loop-variable.rs:122) `(float) y2 = -300001.5 ` (destructured-for-loop-variable.rs:124) `(bool) *z2 = true ` (destructured-for-loop-variable.rs:126) `(double) v2 = 854237.5 ` (destructured-for-loop-variable.rs:131) `(int) i = 1234 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-for-loop-variable.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-for-loop-variable.lldb/destructured-for-loop-variable.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-for-loop-variable.lldb/destructured-for-loop-variable.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-for-loop-variable.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-for-loop-variable.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'destructured-for-loop-variable.rs' --line 162 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`destructured_for_loop_variable::main::hfa16c3ad38efd081 + 292 at destructured-for-loop-variable.rs:162:9, address = 0x0000000100002610 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'destructured-for-loop-variable.rs' --line 169 DEBUG: breakpoint added, id = 2 DEBUG: breakpoint added, id = 2 Breakpoint 2: where = a`destructured_for_loop_variable::main::hfa16c3ad38efd081 + 660 at destructured-for-loop-variable.rs:169:9, address = 0x0000000100002780 breakpoint set --file 'destructured-for-loop-variable.rs' --line 190 DEBUG: breakpoint added, id = 3 Breakpoint 3: where = a`destructured_for_loop_variable::main::hfa16c3ad38efd081 + 1600 at destructured-for-loop-variable.rs:190:9, address = 0x0000000100002b2c DEBUG: registering breakpoint callback, id = 3 Error while trying to register breakpoint callback, id = 3, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 2 DEBUG: registering breakpoint callback, id = 2 Error while trying to register breakpoint callback, id = 2, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'destructured-for-loop-variable.rs' --line 194 DEBUG: breakpoint added, id = 4 DEBUG: breakpoint added, id = 4 Breakpoint 4: where = a`destructured_for_loop_variable::main::hfa16c3ad38efd081 + 1084 at destructured-for-loop-variable.rs:194:9, address = 0x0000000100002928 DEBUG: registering breakpoint callback, id = 4 Error while trying to register breakpoint callback, id = 4, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'destructured-for-loop-variable.rs' --line 203 breakpoint set --file 'destructured-for-loop-variable.rs' --line 203 Breakpoint 5: where = a`destructured_for_loop_variable::main::hfa16c3ad38efd081 + 1336 at destructured-for-loop-variable.rs:203:7, address = 0x0000000100002a24 breakpoint set --file 'destructured-for-loop-variable.rs' --line 207 Breakpoint 6: where = a`destructured_for_loop_variable::main::hfa16c3ad38efd081 + 1556 at destructured-for-loop-variable.rs:207:7, address = 0x0000000100002b00 type format add --format hex char type format add --format hex 'unsigned char' DEBUG: breakpoint added, id = 5 DEBUG: breakpoint added, id = 6 run Process 16469 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100002610 a`destructured_for_loop_variable::main::hfa16c3ad38efd081 at destructured-for-loop-variable.rs:162:9 159 }; 160 161 for &Struct { x, y, z } in &[s] { -> 162 zzz(); // #break ^ 163 } 164 165 let tuple: (i8, u8, i16, u16, i32, u32, i64, u64, f32, f64) = Target 0: (a) stopped. Process 16469 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-for-loop-variable.lldb/a' (arm64) DEBUG: registering breakpoint callback, id = 6 Error while trying to register breakpoint callback, id = 6, message = error: could not get num args: can't find callable: breakpoint_callback DEBUG: registering breakpoint callback, id = 5 DEBUG: registering breakpoint callback, id = 5 Error while trying to register breakpoint callback, id = 5, message = error: could not get num args: can't find callable: breakpoint_callback v x (short) x = 400 v y v y (float) y = 401.5 (bool) z = true continue v _i8 v _i8 (char) _i8 = 0x6f v _u8 (unsigned char) _u8 = 0x70 v _i16 (short) _i16 = -113 v _u16 (unsigned short) _u16 = 114 v _i32 (int) _i32 = -115 v _u32 (unsigned int) _u32 = 116 v _i64 (long) _i64 = -117 v _u64 (unsigned long) _u64 = 118 v _f32 (float) _f32 = 119.5 v _f64 (double) _f64 = 120.5 v v1 (int) v1 = 80000 v x1 (short) x1 = 8000 (short) x1 = 8000 v *y1 (float) *y1 = 80001.5 v z1 (bool) z1 = false v *x2 (short) *x2 = -30000 v y2 (float) y2 = -300001.5 v *z2 (bool) *z2 = true v v2 (double) v2 = 854237.5 v i (int) i = 1234 continue v simple_struct_ident v simple_struct_ident (destructured_for_loop_variable::Struct) simple_struct_ident = (x = 3537, y = 35437.5, z = true) v simple_tuple_ident v simple_tuple_ident ((u32, i64)) simple_tuple_ident = (__0 = 34903493, __1 = 232323) quit ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/destructured-local.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/destructured-local.rs` not found in debugger output. errors: (destructured-local.rs:137) `[...] { 0 = 6 1 = 7 }` (destructured-local.rs:142) `[...] { a = 9 b = 10 }` (destructured-local.rs:164) `[...] { a = 21 b = 22 }` (destructured-local.rs:191) `[...] { 0 = 34 1 = 35 }` (destructured-local.rs:194) `[...] { 0 = 36 1 = 37 }` (destructured-local.rs:200) `[...] { 0 = 40 1 = 41 2 = 42 }` (destructured-local.rs:203) `[...] { 0 = 43 1 = 44 2 = 45 }` (destructured-local.rs:209) `[...] { 0 = 47 1 = 48 }` the following subset of check directive(s) was found successfully: (destructured-local.rs:123) `DEBUG: breakpoint added, id = 1` (destructured-local.rs:125) `(bool) b = false ` (destructured-local.rs:128) `(long) c = 2 ` (destructured-local.rs:130) `(unsigned short) d = 3 ` (destructured-local.rs:132) `(unsigned short) e = 4 ` (destructured-local.rs:135) `(long) f = 5 ` (destructured-local.rs:140) `(short) h = 8 ` (destructured-local.rs:144) `(short) j = 11 ` (destructured-local.rs:147) `(long) k = 12 ` (destructured-local.rs:149) `(int) l = 13 ` (destructured-local.rs:152) `(int) m = 14 ` (destructured-local.rs:154) `(int) n = 16 ` (destructured-local.rs:157) `(int) o = 18 ` (destructured-local.rs:160) `(long) p = 19 ` (destructured-local.rs:162) `(int) q = 20 ` (destructured-local.rs:167) `(int) s = 24 ` (destructured-local.rs:169) `(long) t = 23 ` (destructured-local.rs:172) `(int) u = 25 ` (destructured-local.rs:174) `(int) v = 26 ` (destructured-local.rs:176) `(int) w = 27 ` (destructured-local.rs:178) `(int) x = 28 ` (destructured-local.rs:180) `(long) y = 29 ` (destructured-local.rs:182) `(int) z = 30 ` (destructured-local.rs:184) `(long) ae = 31 ` (destructured-local.rs:186) `(int) oe = 32 ` (destructured-local.rs:188) `(int) ue = 33 ` (destructured-local.rs:197) `(int) cc = 38 ` (destructured-local.rs:206) `(int) *ff = 46 ` (destructured-local.rs:212) `(int) *hh = 50 ` (destructured-local.rs:215) `(int) ii = 51 ` (destructured-local.rs:218) `(int) *jj = 52 ` (destructured-local.rs:221) `(double) kk = 53 ` (destructured-local.rs:224) `(long) ll = 54 ` (destructured-local.rs:227) `(double) mm = 55 ` (destructured-local.rs:230) `(long) *nn = 56 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/destructured-local.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/destructured-local.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'destructured-local.rs' --line 317 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`destructured_local::main::hf45a2dbd8dea5d55 + 944 at destructured-local.rs:317:5, address = 0x00000001000036a4 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 16477 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x00000001000036a4 a`destructured_local::main::hf45a2dbd8dea5d55 at destructured-local.rs:317:5 314 // tuple struct with ref binding 315 let &TupleStruct(mm, ref nn) = &TupleStruct(55.0, 56); 316 -> 317 zzz(); // #break ^ 318 } 319 320 fn zzz() { () } Target 0: (a) stopped. Process 16477 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/destructured-local.lldb/a' (arm64) (long) a = 1 v b (bool) b = false v c v c (long) c = 2 v d (unsigned short) d = 3 (unsigned short) e = 4 v f (long) f = 5 v g v g ((u32, u32)) g = (__0 = 6, __1 = 7) (short) h = 8 v i v i (destructured_local::Struct) i = (a = 9, b = 10) v j (short) j = 11 v k (long) k = 12 (int) l = 13 v m (int) m = 14 v n --- (long) p = 19 v q (int) q = 20 v r (destructured_local::Struct) r = (a = 21, b = 22) (int) s = 24 v t (long) t = 23 v u v u (int) u = 25 v v (int) v = 26 v w (int) w = 27 (int) x = 28 v y (long) y = 29 v z v z (int) z = 30 (long) ae = 31 v oe v oe (int) oe = 32 v ue (int) ue = 33 v aa ((i32, i32)) aa = (__0 = 34, __1 = 35) v bb ((i32, i32)) bb = (__0 = 36, __1 = 37) (int) cc = 38 v dd v dd ((i32, i32, i32)) dd = (__0 = 40, __1 = 41, __2 = 42) v *ee ((i32, i32, i32)) *ee = (__0 = 43, __1 = 44, __2 = 45) v *ff (int) *ff = 46 v gg ((i32, i32)) gg = (__0 = 47, __1 = 48) v *hh (int) *hh = 50 (int) ii = 51 v *jj v *jj (int) *jj = 52 v kk (double) kk = 53 (long) ll = 54 v mm v mm (double) mm = 55 v *nn (long) *nn = 56 ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/evec-in-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/evec-in-struct.rs` not found in debugger output. errors: (evec-in-struct.rs:27) `[...] { x = { [0] = 0 [1] = 1 [2] = 2 } y = -3 z = { [0] = 4.5 [1] = 5.5 } }` (evec-in-struct.rs:29) `[...] { x = { [0] = 6 [1] = 7 [2] = 8 } y = { [0] = { [0] = 9 [1] = 10 } [1] = { [0] = 11 [1] = 12 } } }` (evec-in-struct.rs:32) `[...] { x = { [0] = 13 [1] = 14 } y = { [0] = 15 [1] = 16 } }` (evec-in-struct.rs:35) `[...] { x = { [0] = 17 [1] = 18 [2] = 19 [3] = 20 [4] = 21 } }` (evec-in-struct.rs:38) `[...] { x = { [0] = 22 [1] = 23 } y = { [0] = 24 [1] = 25 } }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/evec-in-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/evec-in-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'evec-in-struct.rs' --line 96 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`evec_in_struct::main::h33db7ab609c5359c + 336 at evec-in-struct.rs:96:5, address = 0x0000000100003d08 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 16623 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003d08 a`evec_in_struct::main::h33db7ab609c5359c at evec-in-struct.rs:96:5 93 y: [24, 25] 94 }; 95 -> 96 zzz(); // #break ^ 97 } 98 99 fn zzz() { () } Target 0: (a) stopped. Process 16623 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/evec-in-struct.lldb/a' (arm64) v no_padding1 (evec_in_struct::NoPadding1) no_padding1 = { x = ([0] = 0, [1] = 1, [2] = 2) y = -3 z = ([0] = 4.5, [1] = 5.5) } v no_padding2 (evec_in_struct::NoPadding2) no_padding2 = { x = ([0] = 6, [1] = 7, [2] = 8) y = { [0] = ([0] = 9, [1] = 10) [1] = ([0] = 11, [1] = 12) } } v struct_internal_padding (evec_in_struct::StructInternalPadding) struct_internal_padding = { x = ([0] = 13, [1] = 14) y = ([0] = 15, [1] = 16) } v single_vec (evec_in_struct::SingleVec) single_vec = { x = ([0] = 17, [1] = 18, [2] = 19, [3] = 20, [4] = 21) } v struct_padded_at_end (evec_in_struct::StructPaddedAtEnd) struct_padded_at_end = { x = ([0] = 22, [1] = 23) y = ([0] = 24, [1] = 25) } ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/generic-function.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/generic-function.rs` not found in debugger output. errors: (generic-function.rs:44) `[...] { a = 6 b = 7.5 }` the following subset of check directive(s) was found successfully: (generic-function.rs:30) `DEBUG: breakpoint added, id = 1` (generic-function.rs:32) `(double) *t1 = 2.5 ` (generic-function.rs:36) `(double) *t0 = 3.5 ` (generic-function.rs:38) `(unsigned short) *t1 = 4 ` (generic-function.rs:42) `(int) *t0 = 5 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/generic-function.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/generic-function.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'generic-function.rs' --line 58 DEBUG: breakpoint added, id = 1 Breakpoint 1: 3 locations. DEBUG: registering breakpoint callback, id = 1 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 16786 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.3 frame #0: 0x0000000100003ac4 a`generic_function::dup_tup::hd80b2c4504c4fecb(t0=0x0000000100003c60, t1=0x0000000100003c68) at generic-function.rs:58:5 55 56 fn dup_tup<T0: Clone, T1: Clone>(t0: &T0, t1: &T1) -> ((T0, T1), (T1, T0)) { 57 let ret = ((t0.clone(), t1.clone()), (t1.clone(), t0.clone())); -> 58 zzz(); // #break ^ 59 ret 60 } 61 Target 0: (a) stopped. Process 16786 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-function.lldb/a' (arm64) v *t0 (int) *t0 = 1 v *t1 (double) *t1 = 2.5 v *t0 v *t0 (double) *t0 = 3.5 v *t1 (unsigned short) *t1 = 4 v *t0 v *t0 (int) *t0 = 5 v *t1 (generic_function::Struct) *t1 = (a = 6, b = 7.5) quit ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/generic-method-on-generic-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/generic-method-on-generic-struct.rs` not found in debugger output. errors: (generic-method-on-generic-struct.rs:59) `[...] { x = { 0 = 8888 1 = -8888 } }` (generic-method-on-generic-struct.rs:68) `[...] { x = { 0 = 8888 1 = -8888 } }` (generic-method-on-generic-struct.rs:77) `[...] { x = 1234.5 }` (generic-method-on-generic-struct.rs:86) `[...] { x = 1234.5 }` (generic-method-on-generic-struct.rs:95) `[...] { x = 1234.5 }` the following subset of check directive(s) was found successfully: (generic-method-on-generic-struct.rs:61) `(long) arg1 = -1 ` (generic-method-on-generic-struct.rs:63) `(unsigned short) arg2 = 2 ` (generic-method-on-generic-struct.rs:70) `(long) arg1 = -3 ` (generic-method-on-generic-struct.rs:72) `(short) arg2 = -4 ` (generic-method-on-generic-struct.rs:79) `(long) arg1 = -5 ` (generic-method-on-generic-struct.rs:81) `(int) arg2 = -6 ` (generic-method-on-generic-struct.rs:88) `(long) arg1 = -7 ` (generic-method-on-generic-struct.rs:90) `(long) arg2 = -8 ` (generic-method-on-generic-struct.rs:97) `(long) arg1 = -9 ` (generic-method-on-generic-struct.rs:99) `(float) arg2 = -10.5 ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/generic-method-on-generic-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/generic-method-on-generic-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'generic-method-on-generic-struct.rs' --line 113 DEBUG: breakpoint added, id = 1 Breakpoint 1: 2 locations. DEBUG: registering breakpoint callback, id = 1 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'generic-method-on-generic-struct.rs' --line 118 breakpoint set --file 'generic-method-on-generic-struct.rs' --line 118 DEBUG: breakpoint added, id = 2Breakpoint 2: 2 locations. DEBUG: registering breakpoint callback, id = 2 DEBUG: registering breakpoint callback, id = 2 Error while trying to register breakpoint callback, id = 2, message = error: could not get num args: can't find callable: breakpoint_callback breakpoint set --file 'generic-method-on-generic-struct.rs' --line 123 DEBUG: breakpoint added, id = 3 DEBUG: breakpoint added, id = 3 Breakpoint 3: where = a`generic_method_on_generic_struct::Struct$LT$T1$GT$::self_owned::h2f45b2e792455a88 + 28 at generic-method-on-generic-struct.rs:123:9, address = 0x00000001000033ac DEBUG: registering breakpoint callback, id = 3 Error while trying to register breakpoint callback, id = 3, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 16857 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.2 frame #0: 0x00000001000032b4 a`generic_method_on_generic_struct::Struct$LT$T1$GT$::self_by_ref::hdfdbc09ff5f9d636(self=0x000000016fdfd2f0, arg1=-1, arg2=2) at generic-method-on-generic-struct.rs:113:9 110 impl<T1> Struct<T1> { 111 112 fn self_by_ref<T2>(&self, arg1: isize, arg2: T2) -> isize { -> 113 zzz(); // #break ^ 114 arg1 115 } 116 Target 0: (a) stopped. Process 16857 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-method-on-generic-struct.lldb/a' (arm64) v *self (generic_method_on_generic_struct::Struct<(u32, i32)>) *self = { x = (__0 = 8888, __1 = -8888) } v arg1 (long) arg1 = -1 v arg2 (unsigned short) arg2 = 2 v self v self (generic_method_on_generic_struct::Struct<(u32, i32)>) self = { x = (__0 = 8888, __1 = -8888) } v arg1 (long) arg1 = -3 v arg2 (short) arg2 = -4 v *self v *self (generic_method_on_generic_struct::Struct<double>) *self = (x = 1234.5) v arg1 (long) arg1 = -5 v arg2 (int) arg2 = -6 v self v self (generic_method_on_generic_struct::Struct<double>) self = (x = 1234.5) v arg1 (long) arg1 = -7 v arg2 (long) arg2 = -8 v *self v *self (generic_method_on_generic_struct::Struct<double>) *self = (x = 1234.5) v arg1 (long) arg1 = -9 v arg2 (float) arg2 = -10.5 quit ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/generic-struct.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/generic-struct.rs` not found in debugger output. errors: (generic-struct.rs:21) `[...]AGenericStruct<int, int>) int_int = { key = 0 value = 1 }` (generic-struct.rs:23) `[...]AGenericStruct<int, double>) int_float = { key = 2 value = 3.5 }` (generic-struct.rs:25) `[...]AGenericStruct<double, int>) float_int = { key = 4.5 value = 5 }` (generic-struct.rs:28) `[...]AGenericStruct<double, generic_struct::AGenericStruct<int, double> >) float_int_float = { key = 6.5 value = { key = 7 value = 8.5 } }` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/generic-struct.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/generic-struct.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::([a-z_]+::)+)PathBuf$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)NonZero<.+>$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^(std::([a-z_]+::)+)PathBuf$" --category Rust type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?(std::([a-z_]+::)+)Path$" --category Rust type category enable Rust breakpoint set --file 'generic-struct.rs' --line 70 DEBUG: breakpoint added, id = 1 DEBUG: breakpoint added, id = 1 Breakpoint 1: where = a`generic_struct::main::h59c75f4357185c3e + 80 at generic-struct.rs:70:5, address = 0x0000000100003d14 DEBUG: registering breakpoint callback, id = 1 Error while trying to register breakpoint callback, id = 1, message = error: could not get num args: can't find callable: breakpoint_callback run run Process 16923 stopped * thread #1, name = 'main', queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100003d14 a`generic_struct::main::h59c75f4357185c3e at generic-struct.rs:70:5 67 value: AGenericStruct { key: 7, value: 8.5f64 }, 68 }; 69 -> 70 zzz(); // #break ^ 71 } 72 73 fn zzz() { () } Target 0: (a) stopped. Process 16923 launched: '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/generic-struct.lldb/a' (arm64) v int_int (generic_struct::AGenericStruct<int, int>) int_int = (key = 0, value = 1) v int_float (generic_struct::AGenericStruct<int, double>) int_float = (key = 2, value = 3.5) v float_int (generic_struct::AGenericStruct<double, int>) float_int = (key = 4.5, value = 5) v float_int_float (generic_struct::AGenericStruct<double, generic_struct::AGenericStruct<int, double> >) float_int_float = { key = 6.5 value = (key = 7, value = 8.5) } ------------------------------------------ stderr: none ---- [debuginfo-lldb] tests/debuginfo/issue-22656.rs stdout ---- NOTE: compiletest thinks it is using LLDB version 1500 error: check directive(s) from `/Users/runner/work/rust/rust/tests/debuginfo/issue-22656.rs` not found in debugger output. errors: (issue-22656.rs:15) `[...] { x = y = 123 z = w = 456 }` the following subset of check directive(s) was found successfully: (issue-22656.rs:13) `(alloc::vec::Vec<int, alloc::alloc::Global>) v = size=3 { [0] = 1 [1] = 2 [2] = 3 } ` status: exit status: 0 command: PYTHONPATH="/Applications/Xcode_15.4.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" PYTHONUNBUFFERED="1" "/usr/bin/python3" "/Users/runner/work/rust/rust/src/etc/lldb_batchmode.py" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/a" "/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/issue-22656.debugger.script" LLDB batch-mode script ---------------------- ---------------------- Debugger commands script is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/issue-22656.debugger.script'. Target executable is '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/a'. Current working directory is '/Users/runner/work/rust/rust' Creating a target for '/Users/runner/work/rust/rust/build/aarch64-apple-darwin/test/debuginfo/issue-22656.lldb/a' settings set auto-confirm true version version lldb-1500.0.404.7 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) command script import /Users/runner/work/rust/rust/./src/etc/lldb_lookup.py type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)String$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?str$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^&(mut )?\\[.+\\]$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(std::collections::([a-z_]+::)+)HashSet<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Rc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(alloc::([a-z_]+::)+)Arc<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Cell<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust type synthetic add -l lldb_lookup.synthetic_lookup -x "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust 
@bors
Copy link
Collaborator

bors commented Nov 26, 2024

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Nov 26, 2024
@jhpratt jhpratt closed this Nov 26, 2024
@matthiaskrgr matthiaskrgr deleted the rollup-lxtm1uv branch January 25, 2025 09:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue.