We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1476448 commit f1f3b15Copy full SHA for f1f3b15
tests/build.rs
@@ -3096,11 +3096,10 @@ fn build_virtual_manifest_one_project() {
3096
pub fn bar() {}
3097
"#);
3098
3099
- // The order in which foo and bar are built is not guaranteed
3100
assert_that(p.cargo_process("build")
3101
.arg("-p").arg("foo"),
3102
execs().with_status(0)
3103
- .with_stderr_does_not_contain("[..] Compiling bar v0.1.0 ([..])")
+ .with_stderr_does_not_contain("bar")
3104
.with_stderr_contains("[..] Compiling foo v0.1.0 ([..])")
3105
.with_stderr("[..] Compiling [..] v0.1.0 ([..])\n\
3106
[..] Finished dev [unoptimized + debuginfo] target(s) in [..]\n"));
0 commit comments