Lines Matching full:tst
42 } tst[] = { variable
79 for (size_t i = 0; i < __arraycount(tst); i++) { in ATF_TC_BODY()
80 r = in_print(buf, l, &tst[i].ia); in ATF_TC_BODY()
81 ATF_REQUIRE_STREQ(buf, tst[i].str); in ATF_TC_BODY()
82 ATF_REQUIRE_EQ(r, tst[i].len); in ATF_TC_BODY()
86 for (size_t i = 0; i < __arraycount(tst); i++) { in ATF_TC_BODY()
87 r = in_print(buf, l, &tst[i].ia); in ATF_TC_BODY()
88 ATF_CHECK(strncmp(buf, tst[i].str, l - 1) == 0); in ATF_TC_BODY()
90 ATF_REQUIRE_EQ(r, tst[i].len); in ATF_TC_BODY()
110 for (size_t i = 0; i < __arraycount(tst); i++) { in ATF_TC_BODY()
111 sin.sin_addr = tst[i].ia; in ATF_TC_BODY()
115 e = snprintf(res, sizeof(res), "%s", tst[i].str); in ATF_TC_BODY()
117 e = snprintf(res, sizeof(res), "%s:%zu", tst[i].str, i); in ATF_TC_BODY()
124 for (size_t i = 0; i < __arraycount(tst); i++) { in ATF_TC_BODY()
125 sin.sin_addr = tst[i].ia; in ATF_TC_BODY()
129 e = snprintf(res, l, "%s", tst[i].str); in ATF_TC_BODY()
131 e = snprintf(res, l, "%s:%zu", tst[i].str, i); in ATF_TC_BODY()