Merge system independent ui-tests back into tests/ui

This commit is contained in:
Oliver Schneider 2017-02-21 12:19:55 +01:00
parent f10128369b
commit 25e230419c
12 changed files with 2 additions and 25 deletions

View file

@ -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() {}

View file

@ -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

View file

@ -1,2 +0,0 @@
fn this_is_obviously(not: a, toml: file) {
}

View 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() {}

View file

@ -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

View file

@ -1 +0,0 @@
blacklisted-names = 42

View file

@ -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() {}

View file

@ -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() {}