We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e5af28 commit aef2f6dCopy full SHA for aef2f6d
tests/testsuite/patch.rs
@@ -1479,8 +1479,17 @@ fn patch_in_virtual() {
1479
.file("foo/src/lib.rs", r#""#)
1480
.build();
1481
1482
- p.cargo("check").run();
1483
- p.cargo("check")
+ p.cargo("check -p foo")
+ .with_stderr_data(str![[r#"
1484
+[UPDATING] `dummy-registry` index
1485
+[LOCKING] 1 package to latest compatible version
1486
+[CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
1487
+[CHECKING] foo v0.1.0 ([ROOT]/foo/foo)
1488
+[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
1489
+
1490
+"#]])
1491
+ .run();
1492
1493
.with_stderr_data(str![[r#"
1494
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
1495
0 commit comments