| /src/external/bsd/atf/dist/test-programs/ |
| config_test.sh | 40 -r resfile config_unset 41 atf_check -s eq:0 -o ignore -e empty grep 'passed' resfile 44 -r resfile -v 'test=' config_empty 45 atf_check -s eq:0 -o ignore -e empty grep 'passed' resfile 48 -r resfile -v 'test=foo' config_value 49 atf_check -s eq:0 -o ignore -e empty grep 'passed' resfile 52 -r resfile -v \'test=foo bar\' config_multi_value 53 atf_check -s eq:0 -o ignore -e empty grep 'passed' resfile
|
| result_test.sh | 77 -r resfile result_pass 78 atf_check -o inline:"passed\n" cat resfile 81 -r resfile result_fail 82 atf_check -o inline:"failed: Failure reason\n" cat resfile 85 -r resfile result_skip 86 atf_check -o inline:"skipped: Skipped reason\n" cat resfile 106 -e match:"FATAL ERROR: Cannot create.*'dir/resfile'" \ 107 "${h}" -s "${srcdir}" -r dir/resfile result_pass 112 -e match:"ERROR: Cannot create.*'dir/resfile'" \ 113 "${h}" -s "${srcdir}" -r dir/resfile result_pas [all...] |
| /src/external/bsd/atf/dist/tools/ |
| atf-run.cpp | 264 const tools::fs::path& resfile) 275 tcr = read_test_case_result(resfile); 291 tcr = read_test_case_result(resfile); 339 tcr = read_test_case_result(resfile); 437 tools::fs::path resfile = resdir.get_path() / "tcr"; local 438 assert(!tools::fs::exists(resfile)); 452 resfile = workdir.get_path() / "tcr"; 458 resfile, workdir.get_path(), w); 464 config, resfile, workdir.get_path(), w); 469 get_test_case_result(s.first, s.second, resfile); [all...] |
| atf-run_test.sh | 73 resfile=\$(echo \${1} | cut -d r -f 2-) 377 test -f \${resfile} && echo "resfile found" 387 -o not-match:'resfile found' \ 403 echo 'line 1' >\${resfile} 404 echo 'line 2' >>\${resfile} 478 echo "failed: Yes, it failed" >\${resfile} 500 echo "passed" >\${resfile}
|
| test-program.cpp | 151 const tools::fs::path& resfile; member in struct:__anon6397::test_case_params 166 resfile(p_resfile), 321 argv.push_back("-r" + params->resfile.str()); 734 const tools::fs::path& resfile, 742 metadata, config, resfile, workdir);
|
| /src/external/bsd/atf/dist/atf-c/ |
| tc.c | 68 const char *resfile; member in struct:context 114 context_init(struct context *ctx, const atf_tc_t *tc, const char *resfile) 117 ctx->resfile = resfile; 213 create_resfile(const char *resfile, const char *result, const int arg, 218 if (strcmp("/dev/stdout", resfile) == 0) { 220 } else if (strcmp("/dev/stderr", resfile) == 0) { 223 const int fd = open(resfile, O_WRONLY | O_CREAT | O_TRUNC, 227 resfile); 291 create_resfile(ctx->resfile, "expected_failure", -1, reason) [all...] |
| tp.c | 198 atf_tp_run(const atf_tp_t *tp, const char *tcname, const char *resfile) 205 return atf_tc_run(tc, resfile);
|
| /src/external/bsd/atf/dist/atf-sh/ |
| atf_check_test.sh | 159 "${h} -r resfile atf_check_equal_fail" 161 resfile 166 "${h} -r resfile atf_check_equal_eval_fail" 168 grep '^failed: \${x} != \${y} (a != b)$' resfile
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| globals.h | 239 DString resfile; member in struct:FeatureState::Param
|
| globals.d | 261 const(char)[] resfile;
|
| json.d | 944 requiredProperty("resourceFile", global.params.resfile);
|
| /src/external/bsd/atf/dist/atf-c++/ |
| tests.cpp | 277 impl::tc::run(const std::string& resfile) 280 atf_error_t err = atf_tc_run(&pimpl->m_tc, resfile.c_str()); 469 opts.insert(option('r', "resfile", "The file to which the test program "
|