Searched refs:out_name (Results 1 - 3 of 3) sorted by relevance

/bind-9.11.3/unit/atf-src/atf-c/
H A Dutils.c259 atf_dynstr_t out_name; local
260 init_out_filename(&out_name, getpid(), "out", false);
265 atf_utils_redirect(STDOUT_FILENO, atf_dynstr_cstring(&out_name));
269 atf_dynstr_fini(&out_name);
421 atf_dynstr_t out_name; local
422 init_out_filename(&out_name, pid, "out", true);
427 atf_utils_cat_file(atf_dynstr_cstring(&out_name), "subprocess stdout: ");
438 atf_utils_copy_file(atf_dynstr_cstring(&out_name),
441 ATF_REQUIRE(atf_utils_compare_file(atf_dynstr_cstring(&out_name),
454 ATF_REQUIRE(unlink(atf_dynstr_cstring(&out_name)) !
[all...]
H A Dutils_test.c246 atf_dynstr_t out_name; local
247 RE(atf_dynstr_init_fmt(&out_name, "atf_utils_fork_%d_out.txt", (int)pid));
252 read_file(atf_dynstr_cstring(&out_name), buffer, sizeof(buffer));
258 atf_dynstr_fini(&out_name);
/bind-9.11.3/unit/atf-src/atf-c++/
H A Dutils_test.cpp237 std::ostringstream out_name; local
238 out_name << "atf_utils_fork_" << pid << "_out.txt";
242 ATF_REQUIRE_EQ("Child stdout\n", read_file(out_name.str()));

Completed in 19 milliseconds