From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/debuginfo/limited-debuginfo.rs | 51 ++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 tests/debuginfo/limited-debuginfo.rs (limited to 'tests/debuginfo/limited-debuginfo.rs') diff --git a/tests/debuginfo/limited-debuginfo.rs b/tests/debuginfo/limited-debuginfo.rs new file mode 100644 index 000000000..bd381cd0e --- /dev/null +++ b/tests/debuginfo/limited-debuginfo.rs @@ -0,0 +1,51 @@ +// ignore-lldb +// ignore-gdb // Test temporarily ignored due to debuginfo tests being disabled, see PR 47155 + +// compile-flags:-C debuginfo=1 + +// Make sure functions have proper names +// gdb-command:info functions +// gdbg-check:[...]void[...]main([...]); +// gdbr-check:fn limited_debuginfo::main(); +// gdbg-check:[...]void[...]some_function([...]); +// gdbr-check:fn limited_debuginfo::some_function(); +// gdbg-check:[...]void[...]some_other_function([...]); +// gdbr-check:fn limited_debuginfo::some_other_function(); +// gdbg-check:[...]void[...]zzz([...]); +// gdbr-check:fn limited_debuginfo::zzz(); + +// gdb-command:run + +// Make sure there is no information about locals +// gdb-command:info locals +// gdb-check:No locals. +// gdb-command:continue + + +#![allow(unused_variables)] +#![feature(omit_gdb_pretty_printer_section)] +#![omit_gdb_pretty_printer_section] + +struct Struct { + a: i64, + b: i32 +} + +fn main() { + some_function(101, 202); + some_other_function(1, 2); +} + + +fn zzz() {()} + +fn some_function(a: isize, b: isize) { + let some_variable = Struct { a: 11, b: 22 }; + let some_other_variable = 23; + + for x in 0..1 { + zzz(); // #break + } +} + +fn some_other_function(a: isize, b: isize) -> bool { true } -- cgit v1.2.3