diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-08-01 14:26:37 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-01 14:26:37 +0000 |
commit | 7eb565e8103566de12daff2fef6b9bb3a71398fc (patch) | |
tree | e0a0b458c5dacf428b7329731d173d695b2cb8e6 /lib/sanitizer_common | |
parent | 747f5b27a3a672211f25ab7ba0ad9a1bde3deb1c (diff) | |
download | compiler-rt-7eb565e8103566de12daff2fef6b9bb3a71398fc.tar.gz |
compiler-rt: Rename .cc file in lib/tsan/tests/{rtl,unit} to .cpp
Like r367463, but for tsan/tests/{rtl,unit}.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@367566 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common')
-rwxr-xr-x | lib/sanitizer_common/scripts/check_lint.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sanitizer_common/scripts/check_lint.sh b/lib/sanitizer_common/scripts/check_lint.sh index bf8e0fdb9..00d811a5b 100755 --- a/lib/sanitizer_common/scripts/check_lint.sh +++ b/lib/sanitizer_common/scripts/check_lint.sh @@ -91,9 +91,9 @@ run_lint ${ASAN_LIT_TEST_LINT_FILTER} ${LIT_TESTS}/asan/*/*.cc & TSAN_RTL=${COMPILER_RT}/lib/tsan run_lint ${TSAN_RTL_LINT_FILTER} ${TSAN_RTL}/rtl/*.cpp \ ${TSAN_RTL}/rtl/*.h & -run_lint ${TSAN_TEST_LINT_FILTER} ${TSAN_RTL}/tests/rtl/*.cc \ +run_lint ${TSAN_TEST_LINT_FILTER} ${TSAN_RTL}/tests/rtl/*.cpp \ ${TSAN_RTL}/tests/rtl/*.h \ - ${TSAN_RTL}/tests/unit/*.cc & + ${TSAN_RTL}/tests/unit/*.cpp & run_lint ${TSAN_LIT_TEST_LINT_FILTER} ${LIT_TESTS}/tsan/*.cc & # MSan |