mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
Merge system independent ui-tests back into tests/ui
This commit is contained in:
parent
f10128369b
commit
25e230419c
12 changed files with 2 additions and 25 deletions
|
@ -1,6 +0,0 @@
|
|||
// error-pattern: error reading Clippy's configuration file
|
||||
|
||||
#![feature(plugin)]
|
||||
#![plugin(clippy(conf_file="./tests/ui-windows/conf_bad_toml.toml"))]
|
||||
|
||||
fn main() {}
|
|
@ -1,4 +0,0 @@
|
|||
error: error reading Clippy's configuration file: The system cannot find the file specified. (os error 2)
|
||||
|
||||
error: aborting due to previous error
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
fn this_is_obviously(not: a, toml: file) {
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
// error-pattern: error reading Clippy's configuration file: `blacklisted-names` is expected to be a `Vec < String >` but is a `integer`
|
||||
|
||||
#![feature(plugin)]
|
||||
#![plugin(clippy(conf_file="./tests/ui-windows/conf_bad_type.toml"))]
|
||||
|
||||
fn main() {}
|
|
@ -1,4 +0,0 @@
|
|||
error: error reading Clippy's configuration file: The system cannot find the file specified. (os error 2)
|
||||
|
||||
error: aborting due to previous error
|
||||
|
|
@ -1 +0,0 @@
|
|||
blacklisted-names = 42
|
|
@ -1,6 +1,6 @@
|
|||
// error-pattern: error reading Clippy's configuration file
|
||||
|
||||
#![feature(plugin)]
|
||||
#![plugin(clippy(conf_file="./tests/ui-posix/conf_bad_toml.toml"))]
|
||||
#![plugin(clippy(conf_file="./tests/ui/conf_bad_toml.toml"))]
|
||||
|
||||
fn main() {}
|
|
@ -1,6 +1,6 @@
|
|||
// error-pattern: error reading Clippy's configuration file: `blacklisted-names` is expected to be a `Vec < String >` but is a `integer`
|
||||
|
||||
#![feature(plugin)]
|
||||
#![plugin(clippy(conf_file="./tests/ui-posix/conf_bad_type.toml"))]
|
||||
#![plugin(clippy(conf_file="./tests/ui/conf_bad_type.toml"))]
|
||||
|
||||
fn main() {}
|
Loading…
Reference in a new issue