Home | History | Annotate | Download | only in tests

Lines Matching refs:testPrintf

224 static void testPrintf(const char *format, unsigned n, ...) {
235 testPrintf("%5$d", 0);
236 testPrintf("%.*5$d", 0);
239 testPrintf("%0-m", 0);
242 testPrintf("%*n", 1, I);
243 testPrintf("%*.10n", 1, I);
246 testPrintf("%10.10n", 1, I);
247 testPrintf("%.3s", 1, 3);
248 testPrintf("%.20s", 1, test_buf_size);
251 testPrintf("%.*n", 1, I);
252 testPrintf("%10.*n", 1, I);
255 testPrintf("%.*s", 1, 0);
258 testPrintf("%ls", 1, 0);