Home | History | Annotate | Download | only in atf-c

Lines Matching defs:resfile

68     const char *resfile;
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);
301 create_resfile(ctx->resfile, "failed", -1, reason);
336 create_resfile(ctx->resfile, "passed", -1, NULL);
349 create_resfile(ctx->resfile, "skipped", -1, reason);
960 create_resfile(ctx->resfile, "expected_exit", exitcode, &formatted);
977 create_resfile(ctx->resfile, "expected_signal", signo, &formatted);
993 create_resfile(ctx->resfile, "expected_death", -1, &formatted);
1010 create_resfile(ctx->resfile, "expected_timeout", -1, &formatted);
1020 atf_tc_run(const atf_tc_t *tc, const char *resfile)
1022 context_init(&Current, tc, resfile);