Lines Matching refs:resfile
68 const char *resfile;
110 context_init(struct context *ctx, const atf_tc_t *tc, const char *resfile)
113 ctx->resfile = resfile;
209 create_resfile(const char *resfile, const char *result, const int arg,
214 if (strcmp("/dev/stdout", resfile) == 0) {
216 } else if (strcmp("/dev/stderr", resfile) == 0) {
219 const int fd = open(resfile, O_WRONLY | O_CREAT | O_TRUNC,
223 resfile);
287 create_resfile(ctx->resfile, "expected_failure", -1, reason);
297 create_resfile(ctx->resfile, "failed", -1, reason);
332 create_resfile(ctx->resfile, "passed", -1, NULL);
345 create_resfile(ctx->resfile, "skipped", -1, reason);
949 create_resfile(ctx->resfile, "expected_exit", exitcode, &formatted);
966 create_resfile(ctx->resfile, "expected_signal", signo, &formatted);
982 create_resfile(ctx->resfile, "expected_death", -1, &formatted);
998 create_resfile(ctx->resfile, "expected_timeout", -1, &formatted);
1008 atf_tc_run(const atf_tc_t *tc, const char *resfile)
1010 context_init(&Current, tc, resfile);