mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
Add two more error causes to integration test
This commit is contained in:
parent
1ceeb13e0a
commit
095287dbc8
1 changed files with 4 additions and 0 deletions
|
@ -59,6 +59,10 @@ fn integration_test() {
|
|||
panic!("query stack during panic in the output");
|
||||
} else if stderr.contains("E0463") {
|
||||
panic!("error: E0463");
|
||||
} else if stderr.contains("E0514") {
|
||||
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`");
|
||||
}
|
||||
|
||||
match output.status.code() {
|
||||
|
|
Loading…
Reference in a new issue