Skip to content

Commit 397abb7

Browse files
committed
auto merge of #12839 : alexcrichton/rust/fix-snap, r=huonw
This test is blocking a snapshot. Apparently the snapshot bot doesn't print 'limited-debuginfo::main()' but rather just 'main()'. Who knew?
2 parents 8a32ee7 + 486a25a commit 397abb7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/debug-info/limited-debuginfo.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

1515
// Make sure functions have proper names
1616
// debugger:info functions
17-
// check:static void limited-debuginfo::main();
18-
// check:static void limited-debuginfo::some_function();
19-
// check:static void limited-debuginfo::some_other_function();
20-
// check:static void limited-debuginfo::zzz();
17+
// check:static void [...]main();
18+
// check:static void [...]some_function();
19+
// check:static void [...]some_other_function();
20+
// check:static void [...]zzz();
2121

2222
// debugger:rbreak zzz
2323
// debugger:run
@@ -49,4 +49,4 @@ fn some_function(a: int, b: int) {
4949
zzz();
5050
}
5151

52-
fn some_other_function(a: int, b: int) -> bool { true }
52+
fn some_other_function(a: int, b: int) -> bool { true }

0 commit comments

Comments
 (0)