]> git.lizzy.rs Git - rust.git/blobdiff - ci/base-tests.sh
Auto merge of #3829 - mikerite:fix-double-parens-suggestions, r=flip1995
[rust.git] / ci / base-tests.sh
index 20b93276017867f388b9eedbacd54dbad396700f..d2b959a2d9d1bb3b0ec2397daa03b60cc4edadbf 100755 (executable)
@@ -59,7 +59,7 @@ rustup override set nightly
 # avoid loop spam and allow cmds with exit status != 0
 set +ex
 
-for file in `find tests -not -path "tests/ui/methods.rs" -not -path "tests/ui/format.rs" -not -path "tests/ui/formatting.rs" -not -path "tests/ui/empty_line_after_outer_attribute.rs" -not -path "tests/ui/double_parens.rs" -not -path "tests/ui/doc.rs" -not -path "tests/ui/unused_unit.rs" | grep "\.rs$"` ; do
+for file in `find tests -not -path "tests/ui/doc.rs" -not -path "tests/ui/unused_unit.rs" | grep "\.rs$"` ; do
   rustfmt ${file} --check
   if [ $? -ne 0 ]; then
     echo "${file} needs reformatting!"