Skip to content

Commit

Permalink
Auto merge of #2747 - WiSaGaN:feature/rename-main-thread, r=alexcrichton
Browse files Browse the repository at this point in the history
Rename main thread from '<main>' to 'main'.

This pull request resolves the test failure in rust pull request 33803
rust-lang/rust#33803
  • Loading branch information
bors committed May 31, 2016
2 parents df5696b + 6a2e613 commit 7d79da0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ test bench_hello ... ")
.with_stderr_contains(format!("\
[COMPILING] foo v0.5.0 ({})
[RUNNING] target[..]release[..]foo-[..]
thread '<main>' panicked at 'assertion failed: \
thread '[..]' panicked at 'assertion failed: \
`(left == right)` (left: \
`\"hello\"`, right: `\"nope\"`)', src[..]foo.rs:14
[..]
Expand Down
2 changes: 1 addition & 1 deletion tests/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ fn reports_unsuccessful_subcommand_result() {
execs().with_status(0).with_stdout_contains(" fail\n"));
assert_that(cargo_process("fail"),
execs().with_status(101).with_stderr_contains("\
thread '<main>' panicked at 'explicit panic', [..]
thread '[..]' panicked at 'explicit panic', [..]
"));
}

Expand Down

0 comments on commit 7d79da0

Please sign in to comment.