From 6a8d55a235e1ce6336dff162aae3feef9f7873b4 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Thu, 11 Jan 2018 17:06:33 +0100 Subject: [PATCH] Extend tidy to allow conditionalizing tests for multiple targets. --- src/tools/tidy/src/pal.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/tidy/src/pal.rs b/src/tools/tidy/src/pal.rs index fdbcfd10bde7c..8071f07d81195 100644 --- a/src/tools/tidy/src/pal.rs +++ b/src/tools/tidy/src/pal.rs @@ -168,8 +168,8 @@ fn find_test_mod(contents: &str) -> usize { let prev_newline_idx = contents[..prev_newline_idx].rfind('\n'); if let Some(nl) = prev_newline_idx { let prev_line = &contents[nl + 1 .. mod_tests_idx]; - let emcc_cfg = "cfg(all(test, not(target_os"; - if prev_line.contains(emcc_cfg) { + if prev_line.contains("cfg(all(test, not(target_os") + || prev_line.contains("cfg(all(test, not(any(target_os") { nl } else { mod_tests_idx