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