diff --git a/tests/debuginfo/associated-types.rs b/tests/debuginfo/associated-types.rs index bc7a62082b7..f85aa2aca96 100644 --- a/tests/debuginfo/associated-types.rs +++ b/tests/debuginfo/associated-types.rs @@ -1,7 +1,3 @@ -// Some versions of the non-rust-enabled LLDB print the wrong generic -// parameter type names in this test. -//@ needs-rust-lldb - //@ compile-flags:-g // === GDB TESTS =================================================================================== diff --git a/tests/debuginfo/borrowed-basic.rs b/tests/debuginfo/borrowed-basic.rs index 397097cc19b..a6847303053 100644 --- a/tests/debuginfo/borrowed-basic.rs +++ b/tests/debuginfo/borrowed-basic.rs @@ -61,7 +61,6 @@ // lldbg-check:[...] -1 // lldbr-check:(isize) *int_ref = -1 -// NOTE: only rust-enabled lldb supports 32bit chars // lldbr-command:print *char_ref // lldbr-check:(char) *char_ref = 'a' diff --git a/tests/debuginfo/borrowed-unique-basic.rs b/tests/debuginfo/borrowed-unique-basic.rs index e952ec8cebb..8059af7dcbb 100644 --- a/tests/debuginfo/borrowed-unique-basic.rs +++ b/tests/debuginfo/borrowed-unique-basic.rs @@ -66,7 +66,6 @@ // lldbg-check:[...] -1 // lldbr-check:(isize) *int_ref = -1 -// NOTE: only rust-enabled lldb supports 32bit chars // lldbr-command:print *char_ref // lldbr-check:(char) *char_ref = 97 diff --git a/tests/debuginfo/generic-struct.rs b/tests/debuginfo/generic-struct.rs index df01d33a0dc..2817f8edc15 100644 --- a/tests/debuginfo/generic-struct.rs +++ b/tests/debuginfo/generic-struct.rs @@ -1,7 +1,3 @@ -// Some versions of the non-rust-enabled LLDB print the wrong generic -// parameter type names in this test. -//@ needs-rust-lldb - //@ compile-flags:-g // === GDB TESTS =================================================================================== diff --git a/tests/debuginfo/lexical-scope-with-macro.rs b/tests/debuginfo/lexical-scope-with-macro.rs index 7ea3dc62e45..ad70da9e493 100644 --- a/tests/debuginfo/lexical-scope-with-macro.rs +++ b/tests/debuginfo/lexical-scope-with-macro.rs @@ -1,5 +1,4 @@ //@ min-lldb-version: 310 -//@ ignore-lldb FIXME #48807 //@ compile-flags:-g @@ -88,7 +87,6 @@ // lldbr-check:(i32) b = 34 // lldb-command:continue -// Don't test this with rust-enabled lldb for now; see issue #48807 // lldbg-command:print a // lldbg-check:[...] 110 // lldbg-command:print b @@ -109,7 +107,6 @@ // lldbg-check:[...] 400 // lldbg-command:continue - #![feature(omit_gdb_pretty_printer_section)] #![omit_gdb_pretty_printer_section] diff --git a/tests/debuginfo/method-on-generic-struct.rs b/tests/debuginfo/method-on-generic-struct.rs index c20c1cec9db..8c2c6a38c26 100644 --- a/tests/debuginfo/method-on-generic-struct.rs +++ b/tests/debuginfo/method-on-generic-struct.rs @@ -1,7 +1,3 @@ -// Some versions of the non-rust-enabled LLDB print the wrong generic -// parameter type names in this test. -//@ needs-rust-lldb - //@ compile-flags:-g // === GDB TESTS =================================================================================== diff --git a/tests/debuginfo/reference-debuginfo.rs b/tests/debuginfo/reference-debuginfo.rs index c21a2f01f2f..b33b148f223 100644 --- a/tests/debuginfo/reference-debuginfo.rs +++ b/tests/debuginfo/reference-debuginfo.rs @@ -68,7 +68,6 @@ // lldbg-check:[...] -1 // lldbr-check:(isize) *int_ref = -1 -// NOTE: only rust-enabled lldb supports 32bit chars // lldbr-command:print *char_ref // lldbr-check:(char) *char_ref = 'a' diff --git a/tests/debuginfo/union-smoke.rs b/tests/debuginfo/union-smoke.rs index f14437b1c3f..4a9a91164a3 100644 --- a/tests/debuginfo/union-smoke.rs +++ b/tests/debuginfo/union-smoke.rs @@ -1,7 +1,5 @@ //@ min-lldb-version: 310 -//@ ignore-gdb-version: 7.11.90 - 7.12.9 - //@ compile-flags:-g // === GDB TESTS =================================================================================== @@ -19,8 +17,6 @@ // lldbg-check:[...] { a = { 0 = '\x02' 1 = '\x02' } b = 514 } // lldbr-check:(union_smoke::U) u = { a = { 0 = '\x02' 1 = '\x02' } b = 514 } -// Don't test this with rust-enabled lldb for now; see -// https://github.com/rust-lang-nursery/lldb/issues/18 // lldbg-command:print union_smoke::SU // lldbg-check:[...] { a = { 0 = '\x01' 1 = '\x01' } b = 257 }