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 6cb5b3c commit 3a7edc2Copy full SHA for 3a7edc2
tests/testsuite/artifact_dep.rs
@@ -1568,15 +1568,14 @@ fn artifact_dep_target_specified() {
1568
.with_status(0)
1569
.run();
1570
1571
- // TODO: This command currently fails due to a bug in cargo but it should be fixed so that it succeeds in the future.
1572
p.cargo("tree -Z bindeps")
1573
.masquerade_as_nightly_cargo(&["bindeps"])
1574
- .with_stdout_data("")
1575
- .with_stderr_data(r#"...
1576
-[..]activated_features for invalid package: features did not find PackageId { name: "bindep", version: "0.0.0", source: "[..]" } NormalOrDev[..]
1577
-...
1578
-"#)
1579
- .with_status(101)
+ .with_stdout_data(str![[r#"
+foo v0.0.0 ([ROOT]/foo)
+└── bindep v0.0.0 ([ROOT]/foo/bindep)
+
+"#]])
+ .with_status(0)
1580
1581
}
1582
0 commit comments