mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
Error in integration test, if required toolchain is not installed
This commit is contained in:
parent
26dcbf5523
commit
3f41fe2704
1 changed files with 2 additions and 0 deletions
|
@ -72,6 +72,8 @@ fn integration_test() {
|
|||
panic!("incompatible crate versions");
|
||||
} else if stderr.contains("failed to run `rustc` to learn about target-specific information") {
|
||||
panic!("couldn't find librustc_driver, consider setting `LD_LIBRARY_PATH`");
|
||||
} else if stderr.contains("toolchain") && stderr.contains("is not installed") {
|
||||
panic!("missing required toolchain");
|
||||
}
|
||||
|
||||
match output.status.code() {
|
||||
|
|
Loading…
Reference in a new issue