Home
last modified time | relevance | path

Searched refs:resfile (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/atf/test-programs/
H A Dconfig_test.sh36 -r resfile config_unset
37 atf_check -s eq:0 -o ignore -e empty grep 'passed' resfile
40 -r resfile -v 'test=' config_empty
41 atf_check -s eq:0 -o ignore -e empty grep 'passed' resfile
44 -r resfile -v 'test=foo' config_value
45 atf_check -s eq:0 -o ignore -e empty grep 'passed' resfile
48 -r resfile -v \'test=foo bar\' config_multi_value
H A Dresult_test.sh73 -r resfile result_pass
74 atf_check -o inline:"passed\n" cat resfile
77 -r resfile result_fail
78 atf_check -o inline:"failed: Failure reason\n" cat resfile
81 -r resfile result_skip
82 atf_check -o inline:"skipped: Skipped reason\n" cat resfile
103 "${h}" -s "${srcdir}" -r dir/resfile result_pass
109 "${h}" -s "${srcdir}" -r dir/resfile result_pass
/freebsd/contrib/atf/atf-c/
H A Dtc.c65 const char *resfile; member
118 context_set_resfile(ctx, resfile); in context_init()
129 context_set_resfile(struct context *ctx, const char *resfile) in context_set_resfile() argument
134 ctx->resfile = resfile; in context_set_resfile()
135 if (strcmp(resfile, "/dev/stdout") == 0) in context_set_resfile()
137 else if (strcmp(resfile, "/dev/stderr") == 0) in context_set_resfile()
144 "Cannot create results file '%s'", resfile); in context_set_resfile()
148 ctx->resfile = resfile; in context_set_resfile()
160 ctx->resfile = NULL; in context_close_resfile()
1050 atf_tc_run(const atf_tc_t *tc, const char *resfile) in atf_tc_run() argument
[all …]
H A Dtp.c194 atf_tp_run(const atf_tp_t *tp, const char *tcname, const char *resfile) in atf_tp_run() argument
201 return atf_tc_run(tc, resfile); in atf_tp_run()
/freebsd/contrib/atf/atf-sh/
H A Datf_check_test.sh157 resfile
164 grep '^failed: \${x} != \${y} (a != b)$' resfile
181 resfile
188 grep '^failed: \${x} == \${y} (a == b)$' resfile
/freebsd/contrib/atf/atf-c++/
H A Dtests.cpp293 impl::tc::run(const std::string& resfile) in run()
296 atf_error_t err = atf_tc_run(&pimpl->m_tc, resfile.c_str()); in run()
527 run_tc(tc_vector& tcs, const std::string& tcarg, const atf::fs::path& resfile) in run_tc() argument
545 tc->run(resfile.str()); in run_tc()
562 atf::fs::path resfile("/dev/stdout"); in safe_main() local
578 resfile = atf::fs::path(::optarg); in safe_main()
627 errcode = run_tc(tcs, argv[0], resfile); in safe_main()