Home
last modified time | relevance | path

Searched refs:test_string_tmp (Results 1 – 2 of 2) sorted by relevance

/freebsd/lib/libsbuf/tests/
H A Dsbuf_stdio_test.c117 char *test_string_tmp; in ATF_TC_BODY() local
119 asprintf(&test_string_tmp, "%s%c" MESSAGE_FORMAT, test_string, in ATF_TC_BODY()
121 ATF_REQUIRE_MSG(test_string_tmp != NULL, "asprintf failed"); in ATF_TC_BODY()
137 ATF_REQUIRE_STREQ_MSG(sbuf_data(sb), test_string_tmp, in ATF_TC_BODY()
139 test_string_tmp); in ATF_TC_BODY()
143 free(test_string_tmp); in ATF_TC_BODY()
176 char *test_string_tmp; in ATF_TC_BODY() local
179 asprintf(&test_string_tmp, "%s%c" MESSAGE_FORMAT, test_string, in ATF_TC_BODY()
181 ATF_REQUIRE_MSG(test_string_tmp != NULL, "asprintf failed"); in ATF_TC_BODY()
197 ATF_REQUIRE_STREQ_MSG(sbuf_data(sb), test_string_tmp, in ATF_TC_BODY()
[all …]
H A Dsbuf_string_test.c143 char *test_string_tmp; in ATF_TC_BODY() local
146 asprintf(&test_string_tmp, "%s%s", test_string, test_string); in ATF_TC_BODY()
147 ATF_REQUIRE_MSG(test_string_tmp != NULL, "asprintf failed"); in ATF_TC_BODY()
163 ATF_REQUIRE_MSG(test_sbuf_len == (ssize_t)strlen(test_string_tmp), in ATF_TC_BODY()
165 strlen(test_string_tmp)); in ATF_TC_BODY()
170 ATF_REQUIRE_STREQ_MSG(sbuf_data(sb), test_string_tmp, in ATF_TC_BODY()
172 test_string_tmp); in ATF_TC_BODY()
176 free(test_string_tmp); in ATF_TC_BODY()