summaryrefslogtreecommitdiffstats
path: root/src/test/debuginfo/should-fail.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/debuginfo/should-fail.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/debuginfo/should-fail.rs')
-rw-r--r--src/test/debuginfo/should-fail.rs35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/test/debuginfo/should-fail.rs b/src/test/debuginfo/should-fail.rs
deleted file mode 100644
index eef6d99d2..000000000
--- a/src/test/debuginfo/should-fail.rs
+++ /dev/null
@@ -1,35 +0,0 @@
-// min-lldb-version: 310
-
-// == Test [gdb|lldb]-[command|check] are parsed correctly ===
-// should-fail
-// needs-run-enabled
-// compile-flags:-g
-
-// === GDB TESTS ===================================================================================
-
-// gdb-command: run
-
-// gdb-command: print x
-// gdb-check:$1 = 5
-
-// === LLDB TESTS ==================================================================================
-
-// lldb-command:run
-
-// lldb-command:print x
-// lldb-check:[...]$0 = 5
-
-// === CDB TESTS ==================================================================================
-
-// cdb-command:g
-
-// cdb-command:dx x
-// cdb-check:string [...] : 5 [Type: [...]]
-
-fn main() {
- let x = 1;
-
- zzz(); // #break
-}
-
-fn zzz() {()}