[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
This commit is contained in:
Fangrui Song 2021-05-25 12:41:07 -07:00
parent dce91f247d
commit 3a678fe3e2
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}