diff options
| author | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-05 09:13:28 +0100 |
|---|---|---|
| committer | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-11 09:32:08 +0000 |
| commit | cf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch) | |
| tree | 40a88d9a46aaf3e8870676eb2538378b75a263eb /tests/debuginfo/box.rs | |
| parent | ca855e6e42787ecd062d81d53336fe6788ef51a9 (diff) | |
| download | rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip | |
Move /src/test to /tests
Diffstat (limited to 'tests/debuginfo/box.rs')
| -rw-r--r-- | tests/debuginfo/box.rs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/debuginfo/box.rs b/tests/debuginfo/box.rs new file mode 100644 index 00000000000..3713c8c135d --- /dev/null +++ b/tests/debuginfo/box.rs @@ -0,0 +1,37 @@ +// min-lldb-version: 310 + +// compile-flags:-g + +// === GDB TESTS =================================================================================== + +// gdb-command:run + +// gdb-command:print *a +// gdb-check:$1 = 1 +// gdb-command:print *b +// gdbg-check:$2 = {__0 = 2, __1 = 3.5} +// gdbr-check:$2 = (2, 3.5) + + +// === LLDB TESTS ================================================================================== + +// lldb-command:run +// lldb-command:print *a +// lldbg-check:[...]$0 = 1 +// lldbr-check:(i32) *a = 1 +// lldb-command:print *b +// lldbg-check:[...]$1 = { 0 = 2 1 = 3.5 } +// lldbr-check:((i32, f64)) *b = { 0 = 2 1 = 3.5 } + +#![allow(unused_variables)] +#![feature(omit_gdb_pretty_printer_section)] +#![omit_gdb_pretty_printer_section] + +fn main() { + let a = Box::new(1); + let b = Box::new((2, 3.5f64)); + + zzz(); // #break +} + +fn zzz() { () } |
