diff options
Diffstat (limited to 'runner/job_list.h')
-rw-r--r-- | runner/job_list.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/runner/job_list.h b/runner/job_list.h new file mode 100644 index 000000000..c726ab093 --- /dev/null +++ b/runner/job_list.h @@ -0,0 +1,37 @@ +#ifndef RUNNER_JOB_LIST_H +#define RUNNER_JOB_LIST_H + +#include <stdbool.h> + +#include "settings.h" + +struct job_list_entry { + char *binary; + char **subtests; + /* + * 0 = all, or test has no subtests. + * + * If the original job_list was to run all subtests of a + * binary and such a run was incomplete, resuming from the + * execution journal will fill the subtest array with already + * started subtests prepended with '!' so the test binary will + * not run them. subtest_count will still reflect the size of + * the above array. + */ + size_t subtest_count; +}; + +struct job_list +{ + struct job_list_entry *entries; + size_t size; +}; + +void init_job_list(struct job_list *job_list); +void free_job_list(struct job_list *job_list); +bool create_job_list(struct job_list *job_list, struct settings *settings); + +bool serialize_job_list(struct job_list *job_list, struct settings *settings); +bool read_job_list(struct job_list *job_list, int dirfd); + +#endif |