summaryrefslogtreecommitdiffstats
path: root/src/test/debuginfo/issue-57822.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/issue-57822.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/issue-57822.rs')
-rw-r--r--src/test/debuginfo/issue-57822.rs55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/test/debuginfo/issue-57822.rs b/src/test/debuginfo/issue-57822.rs
deleted file mode 100644
index 62e7eb13c..000000000
--- a/src/test/debuginfo/issue-57822.rs
+++ /dev/null
@@ -1,55 +0,0 @@
-// This test makes sure that the LLDB pretty printer does not throw an exception
-// for nested closures and generators.
-
-// Require a gdb that can read DW_TAG_variant_part.
-// min-gdb-version: 8.2
-
-// compile-flags:-g
-
-// === GDB TESTS ===================================================================================
-
-// gdb-command:run
-
-// gdb-command:print g
-// gdb-check:$1 = issue_57822::main::{closure_env#1} {f: issue_57822::main::{closure_env#0} {x: 1}}
-
-// gdb-command:print b
-// gdb-check:$2 = issue_57822::main::{generator_env#3}::Unresumed{a: issue_57822::main::{generator_env#2}::Unresumed{y: 2}}
-
-// === LLDB TESTS ==================================================================================
-
-// lldb-command:run
-
-// lldb-command:print g
-// lldbg-check:(issue_57822::main::{closure_env#1}) $0 = { f = { x = 1 } }
-
-// lldb-command:print b
-// lldbg-check:(issue_57822::main::{generator_env#3}) $1 =
-
-#![feature(omit_gdb_pretty_printer_section, generators, generator_trait)]
-#![omit_gdb_pretty_printer_section]
-
-use std::ops::Generator;
-use std::pin::Pin;
-
-fn main() {
- let mut x = 1;
- let f = move || x;
- let g = move || f();
-
- let mut y = 2;
- let mut a = move || {
- y += 1;
- yield;
- };
- let mut b = move || {
- Pin::new(&mut a).resume(());
- yield;
- };
-
- zzz(); // #break
-}
-
-fn zzz() {
- ()
-}