diff options
author | Louis Dionne <ldionne.2@gmail.com> | 2023-11-20 06:23:24 -1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 11:23:24 -0500 |
commit | c38ae74b48c1cb8aedf384686eaa05815d366609 (patch) | |
tree | a6eb596f67390bd2f127bec20748a4076544dec1 | |
parent | a32a2b2ceb6b4c1bbcbcb39363c8dee44daf86ab (diff) | |
download | llvm-c38ae74b48c1cb8aedf384686eaa05815d366609.zip llvm-c38ae74b48c1cb8aedf384686eaa05815d366609.tar.gz llvm-c38ae74b48c1cb8aedf384686eaa05815d366609.tar.bz2 |
[libc++] Stop checking for trailing whitespace in check-generated-output (#72711)
Trailing whitespace is removed by clang-format, so if someone tries to
check-in new code with trailing whitespaces, it'll be caught by the
clang-format job. Removing this duplication helps reduce the confusion
around our numerous ways of enforcing formatting rules.
-rwxr-xr-x | libcxx/utils/ci/run-buildbot | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot index fe99388..65d0cd6 100755 --- a/libcxx/utils/ci/run-buildbot +++ b/libcxx/utils/ci/run-buildbot @@ -262,9 +262,6 @@ check-generated-output) --exclude 'transcoding.pass.cpp' \ --exclude 'underflow.pass.cpp' \ || false - - # Reject code with trailing whitespace - ! grep -rn '[[:blank:]]$' libcxx/include libcxx/src libcxx/test libcxx/benchmarks || false ;; # # Various Standard modes |