Skip to content

Commit 6800111

Browse files
committed
Move all *.toml test files to tests/aux
1 parent 2cd58e4 commit 6800111

8 files changed

+7
-7
lines changed

tests/compile-fail/conf_french_blacklisted_name.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![feature(plugin)]
2-
#![plugin(clippy(conf_file="./tests/compile-fail/conf_french_blacklisted_name.toml"))]
2+
#![plugin(clippy(conf_file="./tests/aux/conf_french_blacklisted_name.toml"))]
33

44
#![allow(dead_code)]
55
#![allow(single_match)]
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// error-pattern: error reading Clippy's configuration file
22

33
#![feature(plugin)]
4-
#![plugin(clippy(conf_file="./tests/compile-fail/non_existant_conf.toml"))]
4+
#![plugin(clippy(conf_file="./tests/aux/non_existant_conf.toml"))]
55

66
fn main() {}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// error-pattern: error reading Clippy's configuration file: unknown key `foobar`
22

33
#![feature(plugin)]
4-
#![plugin(clippy(conf_file="./tests/compile-fail/conf_unknown_key.toml"))]
4+
#![plugin(clippy(conf_file="./tests/aux/conf_unknown_key.toml"))]
55

66
fn main() {}

tests/run-pass/conf_unknown_key.rs

-4
This file was deleted.

tests/run-pass/conf_whitelisted.rs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#![feature(plugin)]
2+
#![plugin(clippy(conf_file="./tests/aux/conf_whitelisted.toml"))]
3+
4+
fn main() {}

0 commit comments

Comments
 (0)