diff options
author | Vitaly Buka <vitalybuka@google.com> | 2019-09-12 02:20:36 +0000 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2019-09-12 02:20:36 +0000 |
commit | e51f24cf674f842be7e37e12bff99e22e21e5044 (patch) | |
tree | bc99ea3584e480b059ac2dd82d44d4c7fe290ef4 /lib/sanitizer_common/scripts | |
parent | fe591a604ee75b90c3f628f522cb6928bca7b076 (diff) | |
download | compiler-rt-e51f24cf674f842be7e37e12bff99e22e21e5044.tar.gz |
[compiler-rt] Remove some cpplint filters
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@371704 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/scripts')
-rwxr-xr-x | lib/sanitizer_common/scripts/check_lint.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/sanitizer_common/scripts/check_lint.sh b/lib/sanitizer_common/scripts/check_lint.sh index ecd61c07e..8c8fc33ee 100755 --- a/lib/sanitizer_common/scripts/check_lint.sh +++ b/lib/sanitizer_common/scripts/check_lint.sh @@ -17,15 +17,15 @@ fi # Filters # TODO: remove some of these filters COMMON_LINT_FILTER=-build/include,-build/header_guard,-legal/copyright,-whitespace/comments,-readability/casting,\ --build/namespaces,-readability/braces,-build/c++11,-runtime/int +-build/namespaces,-build/c++11,-runtime/int COMMON_LIT_TEST_LINT_FILTER=-whitespace/indent,-whitespace/line_length,-runtime/arrays ASAN_RTL_LINT_FILTER=${COMMON_LINT_FILTER} -ASAN_TEST_LINT_FILTER=${COMMON_LINT_FILTER},-runtime/sizeof,-runtime/printf,-runtime/threadsafe_fn +ASAN_TEST_LINT_FILTER=${COMMON_LINT_FILTER},-runtime/printf,-runtime/threadsafe_fn ASAN_LIT_TEST_LINT_FILTER=${ASAN_TEST_LINT_FILTER},${COMMON_LIT_TEST_LINT_FILTER} -TSAN_RTL_LINT_FILTER=${COMMON_LINT_FILTER} +TSAN_RTL_LINT_FILTER=${COMMON_LINT_FILTER},-readability/braces TSAN_TEST_LINT_FILTER=${TSAN_RTL_LINT_FILTER},-runtime/threadsafe_fn TSAN_LIT_TEST_LINT_FILTER=${TSAN_TEST_LINT_FILTER},${COMMON_LIT_TEST_LINT_FILTER} @@ -34,10 +34,10 @@ MSAN_RTL_LINT_FILTER=${COMMON_LINT_FILTER} LSAN_RTL_LINT_FILTER=${COMMON_LINT_FILTER} LSAN_LIT_TEST_LINT_FILTER=${LSAN_RTL_LINT_FILTER},${COMMON_LIT_TEST_LINT_FILTER} -DFSAN_RTL_LINT_FILTER=${COMMON_LINT_FILTER},-runtime/printf,-runtime/references,-readability/function +DFSAN_RTL_LINT_FILTER=${COMMON_LINT_FILTER} SCUDO_RTL_LINT_FILTER=${COMMON_LINT_FILTER} -COMMON_RTL_INC_LINT_FILTER=${COMMON_LINT_FILTER},-runtime/sizeof,-runtime/printf,-readability/fn_size +COMMON_RTL_INC_LINT_FILTER=${COMMON_LINT_FILTER} SANITIZER_INCLUDES_LINT_FILTER=${COMMON_LINT_FILTER} |