rust/tests/debuginfo/include_string.rs
Martin Nordholts 5b57d02e9f compiletest: Use //@ prefixes also for debuginfo test directives
So that when we later add support for revisions we can use the same
syntax for revisions as elsewhere.

This also prevents people from making typos for commands since
`src/tools/compiletest/src/directives/directive_names.rs` will catch such
typos now.

Note that we one FIXME for a non-trivial change for later:
```
// FIXME(148097): Change `// cdb-checksimple_closure` to `//@ cdb-check:simple_closure`
```
2025-11-25 06:13:45 +01:00

43 lines
1.1 KiB
Rust

//@ ignore-gdb-version: 15.0 - 99.0
// ^ test temporarily disabled as it fails under gdb 15
//@ compile-flags:-g
//@ disable-gdb-pretty-printers
//@ ignore-backends: gcc
//@ gdb-command:run
//@ gdb-command:print string1.length
//@ gdb-check:$1 = 48
//@ gdb-command:print string2.length
//@ gdb-check:$2 = 49
//@ gdb-command:print string3.length
//@ gdb-check:$3 = 50
//@ gdb-command:continue
// === LLDB TESTS ==================================================================================
//@ lldb-command:run
//@ lldb-command:v string1.length
//@ lldb-check:[...] 48
//@ lldb-command:v string2.length
//@ lldb-check:[...] 49
//@ lldb-command:v string3.length
//@ lldb-check:[...] 50
//@ lldb-command:continue
#![allow(unused_variables)]
// This test case makes sure that debug info does not ICE when include_str is
// used multiple times (see issue #11322).
fn main() {
let string1 = include_str!("text-to-include-1.txt");
let string2 = include_str!("text-to-include-2.txt");
let string3 = include_str!("text-to-include-3.txt");
zzz(); // #break
}
fn zzz() {()}