Home
last modified time | relevance | path

Searched refs:stdout_file (Results 1 – 15 of 15) sorted by relevance

/freebsd-13.1/contrib/kyua/utils/process/
H A Dexecutor.cpp135 const fs::path stdout_file; member
177 stdout_file(stdout_file_), in impl()
243 executor::exec_handle::stdout_file(void) const in stdout_file() function in executor::exec_handle
245 return _pimpl->stdout_file; in stdout_file()
283 const fs::path stdout_file; member
514 executor::exit_handle::stdout_file(void) const in stdout_file() function in executor::exit_handle
516 return _pimpl->stdout_file; in stdout_file()
669 data.stdout_file(), in post_wait()
760 const fs::path& stdout_file, in spawn_post() argument
770 stdout_file, in spawn_post()
[all …]
H A Dexecutor_test.cpp462 const fs::path stdout_file = exit_handle.stdout_file(); in ATF_TEST_CASE_BODY() local
464 stdout_file.str(), "stdout: some text\n")); in ATF_TEST_CASE_BODY()
470 ATF_REQUIRE(!fs::exists(stdout_file)); in ATF_TEST_CASE_BODY()
482 const fs::path stdout_file("custom-stdout.txt"); in ATF_TEST_CASE_BODY() local
487 utils::make_optional(stdout_file), in ATF_TEST_CASE_BODY()
496 ATF_REQUIRE_EQ(stdout_file, exit_handle.stdout_file()); in ATF_TEST_CASE_BODY()
505 stdout_file.str(), "stdout: some text\n")); in ATF_TEST_CASE_BODY()
571 ATF_REQUIRE_EQ(exit_1_handle.stdout_file(), exit_2_handle.stdout_file()); in ATF_TEST_CASE_BODY()
584 ATF_REQUIRE_EQ(exit_1_handle.stdout_file(), exit_3_handle.stdout_file()); in ATF_TEST_CASE_BODY()
710 exit_handle.stdout_file().str(), in ATF_TEST_CASE_BODY()
[all …]
H A Dchild.cpp256 process::child::fork_files_aux(const fs::path& stdout_file, in fork_files_aux() argument
273 if (stdout_file != fs::path("/dev/stdout")) { in fork_files_aux()
274 const int stdout_fd = open_for_append(stdout_file); in fork_files_aux()
289 LD(F("Spawned process %s: stdout=%s, stderr=%s") % pid % stdout_file % in fork_files_aux()
341 const fs::path& stdout_file, in spawn_files() argument
344 std::auto_ptr< child > child = fork_files_aux(stdout_file, stderr_file); in spawn_files()
H A Dexecutor.hpp129 const utils::fs::path& stdout_file(void) const;
166 const utils::fs::path& stdout_file(void) const;
H A Dchild.ipp46 /// \param stdout_file The name of the file in which to store the stdout.
56 child::fork_files(Hook hook, const fs::path& stdout_file,
59 std::auto_ptr< child > child = fork_files_aux(stdout_file, stderr_file);
H A Dexecutor.ipp173 base.stdout_file(), base.stderr_file());
/freebsd-13.1/contrib/kyua/engine/
H A Dscheduler_test.cpp687 result_handle->stdout_file().str())); in ATF_TEST_CASE_BODY()
755 const fs::path stdout_file = result_handle->stdout_file(); in ATF_TEST_CASE_BODY() local
757 stdout_file.str(), in ATF_TEST_CASE_BODY()
767 ATF_REQUIRE(!fs::exists(stdout_file)); in ATF_TEST_CASE_BODY()
835 result_handle->stdout_file().str())); in ATF_TEST_CASE_BODY()
869 result_handle->stdout_file().str(), in do_cleanup_test()
980 result_handle->stdout_file().str())); in ATF_TEST_CASE_BODY()
1078 const fs::path stdout_file("custom-stdout.txt"); in ATF_TEST_CASE_BODY() local
1082 program, "print_params", user_config, stdout_file, stderr_file); in ATF_TEST_CASE_BODY()
1094 ATF_REQUIRE(stdout_file != result_handle->stdout_file()); in ATF_TEST_CASE_BODY()
[all …]
H A Dscheduler.cpp711 scheduler::result_handle::stdout_file(void) const in stdout_file() function in scheduler::result_handle
713 return _pbimpl->generic.stdout_file(); in stdout_file()
1053 exit_handle.stdout_file(), in list_tests()
1194 handle.stdout_file(), in wait_any()
1306 *output << utils::read_file(result_handle->stdout_file()); in debug_test()
H A Datf_test.cpp153 atf::utils::cat_file(result_handle->stdout_file().str(), "stdout: "); in run_one()
157 ATF_REQUIRE(atf::utils::compare_file(result_handle->stdout_file().str(), in run_one()
H A Dscheduler.hpp208 const utils::fs::path& stdout_file(void) const;
H A Dplain_test.cpp102 atf::utils::cat_file(result_handle->stdout_file().str(), "stdout: "); in run_one()
H A Dtap_test.cpp102 atf::utils::cat_file(result_handle->stdout_file().str(), "stdout: "); in run_one()
/freebsd-13.1/contrib/kyua/utils/
H A Dstacktrace_test.cpp381 ATF_REQUIRE(!atf::utils::grep_file("#0", exit_handle.stdout_file().str())); in ATF_TEST_CASE_BODY()
383 ATF_REQUIRE(!atf::utils::grep_file("#1", exit_handle.stdout_file().str())); in ATF_TEST_CASE_BODY()
450 atf::utils::cat_file(exit_handle.stdout_file().str(), "stdout: "); in ATF_TEST_CASE_BODY()
541 atf::utils::create_file(exit_handle.stdout_file().str(), "Pre-stdout"); in ATF_TEST_CASE_BODY()
547 exit_handle.stdout_file().str())); in ATF_TEST_CASE_BODY()
568 ATF_REQUIRE(atf::utils::compare_file(exit_handle.stdout_file().str(), "")); in ATF_TEST_CASE_BODY()
588 ATF_REQUIRE(atf::utils::compare_file(exit_handle.stdout_file().str(), "")); in ATF_TEST_CASE_BODY()
/freebsd-13.1/contrib/kyua/drivers/
H A Drun_tests.cpp126 tx.put_test_case_file("__STDOUT__", result.stdout_file(), test_case_id); in put_test_result()
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dstream.c1908 apr_file_t *stdout_file; in svn_stream_for_stdout() local
1911 apr_err = apr_file_open_stdout(&stdout_file, pool); in svn_stream_for_stdout()
1919 *out = make_stream_from_apr_file(stdout_file, TRUE, FALSE, FALSE, pool); in svn_stream_for_stdout()