Skip to content

Commit

Permalink
auto merge of #12839 : alexcrichton/rust/fix-snap, r=huonw
Browse files Browse the repository at this point in the history
This test is blocking a snapshot. Apparently the snapshot bot doesn't print
'limited-debuginfo::main()' but rather just 'main()'. Who knew?
  • Loading branch information
bors committed Mar 12, 2014
2 parents 8a32ee7 + 486a25a commit 397abb7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/debug-info/limited-debuginfo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

// Make sure functions have proper names
// debugger:info functions
// check:static void limited-debuginfo::main();
// check:static void limited-debuginfo::some_function();
// check:static void limited-debuginfo::some_other_function();
// check:static void limited-debuginfo::zzz();
// check:static void [...]main();
// check:static void [...]some_function();
// check:static void [...]some_other_function();
// check:static void [...]zzz();

// debugger:rbreak zzz
// debugger:run
Expand Down Expand Up @@ -49,4 +49,4 @@ fn some_function(a: int, b: int) {
zzz();
}

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

0 comments on commit 397abb7

Please sign in to comment.