From: Martin Peres <martin.peres@linux.intel.com>
To: Petri Latvala <petri.latvala@intel.com>, igt-dev@lists.freedesktop.org
Cc: Tomi Sarvela <tomi.p.sarvela@intel.com>
Subject: Re: [igt-dev] [PATCH i-g-t v4 1/1] runner: Implement --abort-on-monitored-error
Date: Tue, 6 Nov 2018 16:45:54 +0200 [thread overview]
Message-ID: <b15c53ac-f961-9344-a6e8-e4197b6a404d@linux.intel.com> (raw)
In-Reply-To: <20181106142629.30952-1-petri.latvala@intel.com>
On 06/11/2018 16:26, Petri Latvala wrote:
> [...]
> diff --git a/runner/resultgen.c b/runner/resultgen.c
> index a62e400e..2863ab3b 100644
> --- a/runner/resultgen.c
> +++ b/runner/resultgen.c
> @@ -649,6 +649,7 @@ static bool fill_from_dmesg(int fd,
> append_line(&dmesg, &dmesglen, formatted);
> free(formatted);
> }
> + free(line);
>
> if (current_test != NULL) {
> add_dmesg(current_test, dmesg, dmesglen, warnings, warningslen);
> @@ -717,6 +718,15 @@ static void add_subtest(struct subtests *subtests, char *subtest)
> subtests->names[subtests->size - 1] = subtest;
> }
>
> +static void free_subtests(struct subtests *subtests)
> +{
> + size_t i;
> +
> + for (i = 0; i < subtests->size; i++)
> + free(subtests->names[i]);
> + free(subtests->names);
> +}
> +
> static void fill_from_journal(int fd,
> struct job_list_entry *entry,
> struct subtests *subtests,
> @@ -902,7 +912,7 @@ static void add_result_to_totals(struct json_object *totals,
> json_object_object_add(totals, result, json_object_new_int(old + 1));
> }
>
> -static void add_to_totals(char *binary,
> +static void add_to_totals(const char *binary,
> struct subtests *subtests,
> struct results *results)
> {
> @@ -950,6 +960,7 @@ static bool parse_test_directory(int dirfd,
> {
> int fds[_F_LAST];
> struct subtests subtests = {};
> + bool status = true;
>
> if (!open_output_files(dirfd, fds, false)) {
> fprintf(stderr, "Error opening output files\n");
> @@ -966,15 +977,18 @@ static bool parse_test_directory(int dirfd,
> !fill_from_output(fds[_F_ERR], entry->binary, "err", &subtests, results->tests) ||
> !fill_from_dmesg(fds[_F_DMESG], settings, entry->binary, &subtests, results->tests)) {
> fprintf(stderr, "Error parsing output files\n");
> - return false;
> + status = false;
> + goto parse_output_end;
> }
>
> override_results(entry->binary, &subtests, results->tests);
> add_to_totals(entry->binary, &subtests, results);
>
> + parse_output_end:
> close_outputs(fds);
> + free_subtests(&subtests);
>
> - return true;
> + return status;
> }
>
> static void create_result_root_nodes(struct json_object *root,
> @@ -1077,6 +1091,34 @@ struct json_object *generate_results_json(int dirfd)
> close(testdirfd);
> }
>
> + if ((fd = openat(dirfd, "aborted.txt", O_RDONLY)) >= 0) {
> + char buf[4096];
> + char piglit_name[] = "igt@pseudoresult@aborted";
I think naming it igt@runner@aborted would make it a little easier to
know which "test" generated this output.
Also, bonus point for printing the full list of tests that led to the
abort (this could be done in a separate patch).
With the first one changed, this is:
Acked-by: Martin Peres <martin.peres@linux.intel.com>
> + struct subtests abortsub = {};
> + struct json_object *aborttest = get_or_create_json_object(results.tests, piglit_name);
> + ssize_t s;
> +
> + add_subtest(&abortsub, strdup("aborted"));
> +
> + s = read(fd, buf, sizeof(buf));
> +
> + json_object_object_add(aborttest, "out",
> + json_object_new_string_len(buf, s));
> + json_object_object_add(aborttest, "err",
> + json_object_new_string(""));
> + json_object_object_add(aborttest, "dmesg",
> + json_object_new_string(""));
> + json_object_object_add(aborttest, "result",
> + json_object_new_string("fail"));
> +
> + add_to_totals("pseudoresult", &abortsub, &results);
> +
> + free_subtests(&abortsub);
> + }
> +
> + free_settings(&settings);
> + free_job_list(&job_list);
> +
> return obj;
> }
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next prev parent reply other threads:[~2018-11-06 14:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-06 14:26 [igt-dev] [PATCH i-g-t v4 1/1] runner: Implement --abort-on-monitored-error Petri Latvala
2018-11-06 14:45 ` Martin Peres [this message]
2018-11-06 16:53 ` Chris Wilson
2018-11-08 12:39 ` Petri Latvala
2018-11-07 18:37 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v4,1/1] " Patchwork
2018-11-08 6:09 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b15c53ac-f961-9344-a6e8-e4197b6a404d@linux.intel.com \
--to=martin.peres@linux.intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=petri.latvala@intel.com \
--cc=tomi.p.sarvela@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox