From 7b94ef19bdbdaa8a3d478633e5f4e24f7a20c4d8 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Tue, 4 Oct 2016 09:15:03 +0530 Subject: [PATCH] aux -> auxiliary (breaks Windows) --- tests/{aux => auxiliary}/conf_french_blacklisted_name.toml | 0 tests/{aux => auxiliary}/conf_unknown_key.toml | 0 tests/{aux => auxiliary}/conf_whitelisted.toml | 0 tests/compile-fail/conf_french_blacklisted_name.rs | 2 +- tests/compile-fail/conf_non_existant.rs | 2 +- tests/compile-fail/conf_unknown_key.rs | 2 +- tests/run-pass/conf_whitelisted.rs | 2 +- 7 files changed, 4 insertions(+), 4 deletions(-) rename tests/{aux => auxiliary}/conf_french_blacklisted_name.toml (100%) rename tests/{aux => auxiliary}/conf_unknown_key.toml (100%) rename tests/{aux => auxiliary}/conf_whitelisted.toml (100%) diff --git a/tests/aux/conf_french_blacklisted_name.toml b/tests/auxiliary/conf_french_blacklisted_name.toml similarity index 100% rename from tests/aux/conf_french_blacklisted_name.toml rename to tests/auxiliary/conf_french_blacklisted_name.toml diff --git a/tests/aux/conf_unknown_key.toml b/tests/auxiliary/conf_unknown_key.toml similarity index 100% rename from tests/aux/conf_unknown_key.toml rename to tests/auxiliary/conf_unknown_key.toml diff --git a/tests/aux/conf_whitelisted.toml b/tests/auxiliary/conf_whitelisted.toml similarity index 100% rename from tests/aux/conf_whitelisted.toml rename to tests/auxiliary/conf_whitelisted.toml diff --git a/tests/compile-fail/conf_french_blacklisted_name.rs b/tests/compile-fail/conf_french_blacklisted_name.rs index 716b338e1a4..4c306a98b20 100644 --- a/tests/compile-fail/conf_french_blacklisted_name.rs +++ b/tests/compile-fail/conf_french_blacklisted_name.rs @@ -1,5 +1,5 @@ #![feature(plugin)] -#![plugin(clippy(conf_file="./tests/aux/conf_french_blacklisted_name.toml"))] +#![plugin(clippy(conf_file="./tests/auxiliary/conf_french_blacklisted_name.toml"))] #![allow(dead_code)] #![allow(single_match)] diff --git a/tests/compile-fail/conf_non_existant.rs b/tests/compile-fail/conf_non_existant.rs index 0a31fb16147..e287f7e02af 100644 --- a/tests/compile-fail/conf_non_existant.rs +++ b/tests/compile-fail/conf_non_existant.rs @@ -1,6 +1,6 @@ // error-pattern: error reading Clippy's configuration file #![feature(plugin)] -#![plugin(clippy(conf_file="./tests/aux/non_existant_conf.toml"))] +#![plugin(clippy(conf_file="./tests/auxiliary/non_existant_conf.toml"))] fn main() {} diff --git a/tests/compile-fail/conf_unknown_key.rs b/tests/compile-fail/conf_unknown_key.rs index e6041d8ed1c..b5c1b240e4d 100644 --- a/tests/compile-fail/conf_unknown_key.rs +++ b/tests/compile-fail/conf_unknown_key.rs @@ -1,6 +1,6 @@ // error-pattern: error reading Clippy's configuration file: unknown key `foobar` #![feature(plugin)] -#![plugin(clippy(conf_file="./tests/aux/conf_unknown_key.toml"))] +#![plugin(clippy(conf_file="./tests/auxiliary/conf_unknown_key.toml"))] fn main() {} diff --git a/tests/run-pass/conf_whitelisted.rs b/tests/run-pass/conf_whitelisted.rs index 9b4bb4155d3..1c82a010b3d 100644 --- a/tests/run-pass/conf_whitelisted.rs +++ b/tests/run-pass/conf_whitelisted.rs @@ -1,4 +1,4 @@ #![feature(plugin)] -#![plugin(clippy(conf_file="./tests/aux/conf_whitelisted.toml"))] +#![plugin(clippy(conf_file="./tests/auxiliary/conf_whitelisted.toml"))] fn main() {}