Lines Matching refs:ntest
132 #define SIMPLE_COPY(fn, n, str, ntest) \ argument
140 check (*cp == '0' + (n % 10), ntest); \
141 check (*cp == '\0', ntest); \
323 int ntest = 10; in test_strcat() local
338 check (strcat (buf1 + n2, buf2 + n1) == buf1 + n2, ntest); in test_strcat()
343 check (buf1[i] == 'b', ntest); in test_strcat()
345 check (buf1[i] == 'a', ntest); in test_strcat()
347 check (buf1[i] == "123"[i - (n2 + n3)], ntest); in test_strcat()
349 check (buf1[i] == '\0', ntest); in test_strcat()
351 check (buf1[i] == 'b', ntest); in test_strcat()
410 int ntest = 14; in test_strncat() local
427 == buf1 + n2, ntest); in test_strncat()
432 check (buf1[i] == 'b', ntest); in test_strncat()
434 check (buf1[i] == 'a', ntest); in test_strncat()
436 check (buf1[i] == "123"[i - (n2 + n3)], ntest); in test_strncat()
438 check (buf1[i] == '\0', ntest); in test_strncat()
440 check (buf1[i] == 'b', ntest); in test_strncat()