Skip to content

Commit 97c1bba

Browse files
committed
Add cargo check --all
This'll check all `build` targets for all packages in a workspace
1 parent 6ed5a43 commit 97c1bba

File tree

2 files changed

+49
-3
lines changed

2 files changed

+49
-3
lines changed

src/bin/check.rs

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::env;
22

33
use cargo::core::Workspace;
4-
use cargo::ops::{self, CompileOptions, MessageFormat};
4+
use cargo::ops::{self, CompileOptions, MessageFormat, Packages};
55
use cargo::util::{CliResult, Config};
66
use cargo::util::important_paths::find_root_manifest_for_wd;
77

@@ -13,7 +13,8 @@ Usage:
1313
1414
Options:
1515
-h, --help Print this message
16-
-p SPEC, --package SPEC ... Package to check
16+
-p SPEC, --package SPEC ... Package(s) to check
17+
--all Check all packages in the workspace
1718
-j N, --jobs N Number of parallel jobs, defaults to # of CPUs
1819
--lib Check only this package's library
1920
--bin NAME Check only the specified binary
@@ -64,6 +65,7 @@ pub struct Options {
6465
flag_bench: Vec<String>,
6566
flag_locked: bool,
6667
flag_frozen: bool,
68+
flag_all: bool,
6769
}
6870

6971
pub fn execute(options: Options, config: &Config) -> CliResult {
@@ -79,14 +81,20 @@ pub fn execute(options: Options, config: &Config) -> CliResult {
7981
let root = find_root_manifest_for_wd(options.flag_manifest_path, config.cwd())?;
8082
let ws = Workspace::new(&root, config)?;
8183

84+
let spec = if options.flag_all {
85+
Packages::All
86+
} else {
87+
Packages::Packages(&options.flag_package)
88+
};
89+
8290
let opts = CompileOptions {
8391
config: config,
8492
jobs: options.flag_jobs,
8593
target: options.flag_target.as_ref().map(|t| &t[..]),
8694
features: &options.flag_features,
8795
all_features: options.flag_all_features,
8896
no_default_features: options.flag_no_default_features,
89-
spec: ops::Packages::Packages(&options.flag_package),
97+
spec: spec,
9098
mode: ops::CompileMode::Check,
9199
release: options.flag_release,
92100
filter: ops::CompileFilter::new(options.flag_lib,

tests/check.rs

+38
Original file line numberDiff line numberDiff line change
@@ -383,3 +383,41 @@ fn rustc_check_err() {
383383
.arg("--emit=metadata"),
384384
execs().with_status(101));
385385
}
386+
387+
#[test]
388+
fn check_all() {
389+
if !is_nightly() {
390+
return
391+
}
392+
let foo = project("foo")
393+
.file("Cargo.toml", r#"
394+
[package]
395+
name = "foo"
396+
version = "0.0.1"
397+
authors = []
398+
399+
[workspace]
400+
[dependencies]
401+
b = { path = "b" }
402+
"#)
403+
.file("src/main.rs", "fn main() {}")
404+
.file("examples/a.rs", "fn main() {}")
405+
.file("tests/a.rs", "")
406+
.file("src/lib.rs", "")
407+
.file("b/Cargo.toml", r#"
408+
[package]
409+
name = "b"
410+
version = "0.0.1"
411+
authors = []
412+
"#)
413+
.file("b/src/main.rs", "fn main() {}")
414+
.file("b/src/lib.rs", "");
415+
416+
assert_that(foo.cargo_process("check").arg("--all").arg("-v"),
417+
execs().with_status(0)
418+
.with_stderr_contains("[..] --crate-name foo src[/]lib.rs [..]")
419+
.with_stderr_contains("[..] --crate-name foo src[/]main.rs [..]")
420+
.with_stderr_contains("[..] --crate-name b b[/]src[/]lib.rs [..]")
421+
.with_stderr_contains("[..] --crate-name b b[/]src[/]main.rs [..]")
422+
);
423+
}

0 commit comments

Comments
 (0)