Skip to content

Commit f30c76a

Browse files
committed
Turn off cdb test for now, link to issue
1 parent edb6c4b commit f30c76a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/test/debuginfo/no_mangle-info.rs

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
// compile-flags:-g
22

33
// === GDB TESTS ===================================================================================
4-
54
// gdb-command:run
65
// gdb-command:whatis TEST
76
// gdb-check:type = u64
87

98
// === LLDB TESTS ==================================================================================
10-
119
// lldb-command:run
1210
// lldb-command:expr TEST
1311
// lldb-check: (unsigned long) $0 = 3735928559
1412

1513
// === CDB TESTS ==================================================================================
16-
// cdb-command: g
17-
18-
// cdb-command: dx a!no_mangle_info::TEST
19-
// cdb-check: a!no_mangle_info::TEST : 0xdeadbeef [Type: unsigned __int64]
14+
// FIXME: This does not currently work due to a bug in LLVM
15+
// The fix for this is being tracked in rust-lang/rust#98295
16+
// // cdb-command: g
17+
// // cdb-command: dx a!no_mangle_info::TEST
18+
// // cdb-check: a!no_mangle_info::TEST : 0xdeadbeef [Type: unsigned __int64]
2019

2120
#[no_mangle]
2221
pub static TEST: u64 = 0xdeadbeef;

0 commit comments

Comments
 (0)