Skip to content

Commit

Permalink
Fix no_cross_doctests race condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed May 11, 2022
1 parent 23ae8a0 commit e952070
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/testsuite/cross_compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -594,10 +594,11 @@ fn no_cross_doctests() {
let target = rustc_host();
p.cargo("test -v --target")
.arg(&target)
.with_stderr(&format!(
// Unordered since the two `rustc` invocations happen concurrently.
.with_stderr_unordered(&format!(
"\
[COMPILING] foo v0.0.1 ([CWD])
[RUNNING] `rustc --crate-name foo [..]
[RUNNING] `rustc --crate-name foo [..]--crate-type lib[..]
[RUNNING] `rustc --crate-name foo [..]--test[..]
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
[RUNNING] `[CWD]/target/{target}/debug/deps/foo-[..][EXE]`
Expand Down

0 comments on commit e952070

Please sign in to comment.