[compiler-rt] 3a678fe - [sanitizer][test] s/A<10>/A<7>/ to fix "WARNING: Symbolizer buffer too small" which is somehow a hard error on s390x
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Tue May 25 12:41:13 PDT 2021
Author: Fangrui Song
Date: 2021-05-25T12:41:07-07:00
New Revision: 3a678fe3e29fe48d9b4efc936edd2ac43c720bae
URL: https://github.com/llvm/llvm-project/commit/3a678fe3e29fe48d9b4efc936edd2ac43c720bae
DIFF: https://github.com/llvm/llvm-project/commit/3a678fe3e29fe48d9b4efc936edd2ac43c720bae.diff
LOG: [sanitizer][test] s/A<10>/A<7>/ to fix "WARNING: Symbolizer buffer too small" which is somehow a hard error on s390x
https://reviews.llvm.org/D102046#2766553
Added:
Modified:
compiler-rt/test/sanitizer_common/TestCases/Linux/symbolize_stack_fp.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Linux/symbolize_stack_fp.cpp b/compiler-rt/test/sanitizer_common/TestCases/Linux/symbolize_stack_fp.cpp
index 1e451537d9593..0d798a9cc15f5 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Linux/symbolize_stack_fp.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Linux/symbolize_stack_fp.cpp
@@ -34,5 +34,5 @@ __attribute__((noinline)) void A<0>::RecursiveTemplateFunction(const T &) {
int main() {
// CHECK: {{vector<.*vector<.*vector<.*vector<.*vector<}}
- A<10>().RecursiveTemplateFunction(0);
+ A<7>().RecursiveTemplateFunction(0);
}
More information about the llvm-commits
mailing list