Lines Matching +full:tcs +full:- +full:config

35 #include <atf-c++.hpp>
37 #include "engine/config.hpp"
43 #include "utils/config/tree.ipp"
52 namespace config = utils::config;
71 const fs::path srcdir(tc->get_config_var("srcdir")); in copy_plain_helper()
83 /// \param user_config User-provided configuration variables.
88 const config::tree& user_config = engine::empty_config()) in run_one()
92 "plain", fs::path(test_case_name), fs::current_path(), "the-suite") in run_one()
102 atf::utils::cat_file(result_handle->stdout_file().str(), "stdout: "); in run_one()
103 atf::utils::cat_file(result_handle->stderr_file().str(), "stderr: "); in run_one()
104 ATF_REQUIRE_EQ(exp_result, test_result_handle->test_result()); in run_one()
105 result_handle->cleanup(); in run_one()
119 "plain", fs::path("non-existent"), fs::path("."), "unused-suite") in ATF_TEST_CASE_BODY()
146 "Returned non-success exit status 8"); in ATF_TEST_CASE_BODY()
182 config::tree user_config = engine::empty_config(); in ATF_TEST_CASE_BODY()
183 user_config.set_string("test_suites.a-suite.first", "unused"); in ATF_TEST_CASE_BODY()
184 user_config.set_string("test_suites.the-suite.first", "some value"); in ATF_TEST_CASE_BODY()
185 user_config.set_string("test_suites.the-suite.second", "some other value"); in ATF_TEST_CASE_BODY()
186 user_config.set_string("test_suites.other-suite.first", "unused"); in ATF_TEST_CASE_BODY()
194 ATF_INIT_TEST_CASES(tcs) in ATF_INIT_TEST_CASES() argument
200 ATF_ADD_TEST_CASE(tcs, list); in ATF_INIT_TEST_CASES()
202 ATF_ADD_TEST_CASE(tcs, test__exit_success_is_pass); in ATF_INIT_TEST_CASES()
203 ATF_ADD_TEST_CASE(tcs, test__exit_non_zero_is_fail); in ATF_INIT_TEST_CASES()
204 ATF_ADD_TEST_CASE(tcs, test__signal_is_broken); in ATF_INIT_TEST_CASES()
205 ATF_ADD_TEST_CASE(tcs, test__timeout_is_broken); in ATF_INIT_TEST_CASES()
206 ATF_ADD_TEST_CASE(tcs, test__configuration_variables); in ATF_INIT_TEST_CASES()