Skip to content

Commit 960a5ed

Browse files
committed
Auto merge of #115128 - davidtwco:re-enable-debuginfo-test, r=wesleywiser
tests: re-enable pretty-std-collections on macOS Fixes #78665. I made some small modifications to this test so that it would pass for me locally (though I was only able to test using lldb without built-in Rust support, but that seems to be the mode in which it would fail). I ran it a few hundred times with stage one and stage two to see if I could re-produce the spurious failures that were being reported in #78665 and couldn't. From the discussion in #78665, it seemed like this was related to Xcode versions and could be reproduced locally fairly easily. It's been a couple years since this was disabled so a lot has changed. If this starts failing spuriously again then we can disable it and I can look into that. r? `@wesleywiser` (discussed in wg-debugging's triage meeting)
2 parents e5fedce + 3bd5dc3 commit 960a5ed

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/tools/compiletest/src/runtest.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1475,6 +1475,15 @@ impl<'test> TestCx<'test> {
14751475
"^core::num::([a-z_]+::)*NonZero.+$",
14761476
];
14771477

1478+
// In newer versions of lldb, persistent results (the `$N =` part at the start of
1479+
// expressions you have evaluated that let you re-use the result) aren't printed, but lots
1480+
// of rustc's debuginfo tests rely on these, so re-enable this.
1481+
// See <https://reviews.llvm.org/rG385496385476fc9735da5fa4acabc34654e8b30d>.
1482+
script_str.push_str("command unalias print\n");
1483+
script_str.push_str("command alias print expr --\n");
1484+
script_str.push_str("command unalias p\n");
1485+
script_str.push_str("command alias p expr --\n");
1486+
14781487
script_str
14791488
.push_str(&format!("command script import {}\n", &rust_pp_module_abs_path[..])[..]);
14801489
script_str.push_str("type synthetic add -l lldb_lookup.synthetic_lookup -x '.*' ");

tests/debuginfo/pretty-std-collections.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// ignore-windows failing on win32 bot
22
// ignore-freebsd: gdb package too new
33
// ignore-android: FIXME(#10381)
4-
// ignore-macos: FIXME(#78665)
54
// compile-flags:-g
65

76
// The pretty printers being tested here require the patch from

0 commit comments

Comments
 (0)