Searched refs:testScanfNoGnuMalloc (Results 1 – 1 of 1) sorted by relevance
/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
H A D | sanitizer_format_interceptor_test.cpp | 107 static void testScanfNoGnuMalloc(const char *format, unsigned n, ...) { in testScanfNoGnuMalloc() function 178 testScanfNoGnuMalloc("s%Las", 1, LD); in TEST() 179 testScanfNoGnuMalloc("%ar", 1, F); in TEST() 180 testScanfNoGnuMalloc("%a[", 1, F); in TEST() 181 testScanfNoGnuMalloc("%a[]", 1, F); in TEST() 182 testScanfNoGnuMalloc("%a[]]", 1, F); in TEST() 183 testScanfNoGnuMalloc("%a[abc]", 1, F); in TEST() 184 testScanfNoGnuMalloc("%a[^abc]", 1, F); in TEST() 185 testScanfNoGnuMalloc("%a[ab%c] %d", 3, F, C, I); in TEST() 186 testScanfNoGnuMalloc("%a[^ab%c] %d", 3, F, C, I); in TEST() [all …]
|