Skip to content

Commit f13ca72

Browse files
committed
Auto merge of #2723 - alexcrichton:override-errors, r=wycats
Don't throw away errors with `-p` arguments This was unfortunately ignoring errors which would helpfully tell you how to rerun a command with a more precise specification. Closes #2641
2 parents 235e2c2 + ab9f64d commit f13ca72

File tree

3 files changed

+50
-19
lines changed

3 files changed

+50
-19
lines changed

src/cargo/ops/cargo_compile.rs

+6-14
Original file line numberDiff line numberDiff line change
@@ -167,23 +167,15 @@ pub fn compile_pkg<'a>(root_package: &Package,
167167
no_default_features))
168168
};
169169

170-
let mut invalid_spec = vec![];
171-
let pkgids = if spec.len() > 0 {
172-
spec.iter().filter_map(|p| {
173-
match resolve_with_overrides.query(&p) {
174-
Ok(p) => Some(p),
175-
Err(..) => { invalid_spec.push(p.to_string()); None }
176-
}
177-
}).collect::<Vec<_>>()
170+
let mut pkgids = Vec::new();
171+
if spec.len() > 0 {
172+
for p in spec {
173+
pkgids.push(try!(resolve_with_overrides.query(&p)));
174+
}
178175
} else {
179-
vec![root_package.package_id()]
176+
pkgids.push(root_package.package_id());
180177
};
181178

182-
if !spec.is_empty() && !invalid_spec.is_empty() {
183-
bail!("could not find package matching spec `{}`",
184-
invalid_spec.join(", "))
185-
}
186-
187179
let to_builds = try!(pkgids.iter().map(|id| {
188180
packages.get(id)
189181
}).collect::<CargoResult<Vec<_>>>());

tests/test_cargo_compile.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -2107,13 +2107,14 @@ test!(invalid_spec {
21072107
p.build();
21082108

21092109
assert_that(p.cargo_process("build").arg("-p").arg("notAValidDep"),
2110-
execs().with_status(101).with_stderr(&format!(
2111-
"[ERROR] could not find package matching spec `notAValidDep`")));
2110+
execs().with_status(101).with_stderr("\
2111+
[ERROR] package id specification `notAValidDep` matched no packages
2112+
"));
21122113

21132114
assert_that(p.cargo_process("build").arg("-p").arg("d1").arg("-p").arg("notAValidDep"),
2114-
execs().with_status(101).with_stderr(&format!(
2115-
"[ERROR] could not find package matching spec `notAValidDep`")));
2116-
2115+
execs().with_status(101).with_stderr("\
2116+
[ERROR] package id specification `notAValidDep` matched no packages
2117+
"));
21172118
});
21182119

21192120
test!(manifest_with_bom_is_ok {

tests/test_cargo_overrides.rs

+38
Original file line numberDiff line numberDiff line change
@@ -526,3 +526,41 @@ error: overlapping replacement specifications found:
526526
both specifications match: foo v0.1.0 ([..])
527527
"));
528528
});
529+
530+
test!(test_override_dep {
531+
Package::new("foo", "0.1.0").publish();
532+
533+
let foo = git::repo(&paths::root().join("override"))
534+
.file("Cargo.toml", r#"
535+
[package]
536+
name = "foo"
537+
version = "0.1.0"
538+
authors = []
539+
"#)
540+
.file("src/lib.rs", "pub fn foo() {}");
541+
foo.build();
542+
543+
let p = project("local")
544+
.file("Cargo.toml", &format!(r#"
545+
[package]
546+
name = "local"
547+
version = "0.0.1"
548+
authors = []
549+
550+
[dependencies]
551+
foo = "0.1.0"
552+
553+
[replace]
554+
"foo:0.1.0" = {{ git = '{0}' }}
555+
"#, foo.url()))
556+
.file("src/lib.rs", "");
557+
558+
assert_that(p.cargo_process("test").arg("-p").arg("foo"),
559+
execs().with_status(101)
560+
.with_stderr_contains("\
561+
error: There are multiple `foo` packages in your project, and the [..]
562+
Please re-run this command with [..]
563+
[..]#foo:0.1.0
564+
[..]#foo:0.1.0
565+
"));
566+
});

0 commit comments

Comments
 (0)