Lines Matching full:tst
43 } tst[] = { variable
87 for (size_t i = 0; i < __arraycount(tst); i++) { in ATF_TC_BODY()
88 r = in6_print(buf, l, &tst[i].ia); in ATF_TC_BODY()
89 ATF_REQUIRE_STREQ(buf, tst[i].str); in ATF_TC_BODY()
90 ATF_REQUIRE_EQ(r, tst[i].len); in ATF_TC_BODY()
94 for (size_t i = 0; i < __arraycount(tst); i++) { in ATF_TC_BODY()
95 r = in6_print(buf, l, &tst[i].ia); in ATF_TC_BODY()
96 ATF_CHECK(strncmp(buf, tst[i].str, l - 1) == 0); in ATF_TC_BODY()
99 ATF_REQUIRE_EQ(r, tst[i].len); in ATF_TC_BODY()
119 for (size_t i = 0; i < __arraycount(tst); i++) { in ATF_TC_BODY()
120 sin6.sin6_addr = tst[i].ia; in ATF_TC_BODY()
124 e = snprintf(res, sizeof(res), "%s", tst[i].str); in ATF_TC_BODY()
127 tst[i].str, i); in ATF_TC_BODY()
134 for (size_t i = 0; i < __arraycount(tst); i++) { in ATF_TC_BODY()
135 sin6.sin6_addr = tst[i].ia; in ATF_TC_BODY()
139 e = snprintf(res, l, "%s", tst[i].str); in ATF_TC_BODY()
141 e = snprintf(res, l, "[%s]:%zu", tst[i].str, i); in ATF_TC_BODY()