We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0307ff0 commit 0eb7596Copy full SHA for 0eb7596
ci/base-tests.sh
@@ -59,7 +59,9 @@ rustup override set nightly
59
# avoid loop spam and allow cmds with exit status != 0
60
set +ex
61
62
-for file in `find tests | grep "\.rs$"` ; do
+# Excluding `ice-3891.rs` because the code triggers a rustc parse error which
63
+# makes rustfmt fail.
64
+for file in `find tests -not -path "tests/ui/crashes/ice-3891.rs" | grep "\.rs$"` ; do
65
rustfmt ${file} --check
66
if [ $? -ne 0 ]; then
67
echo "${file} needs reformatting!"
0 commit comments