Re: [PATCH weston v3 4/5] Enables output in the JUnit XML format.

2015-06-01 Thread Daniel Stone
Hi, On 27 May 2015 at 00:06, Jon A. Cruz wrote: > +void emit_escaped(int fd, const char *str) > +{ > + const char *ptr = str; > + while (*ptr) { > + switch (*ptr) { > + case '\'': > + dprintf(fd, "'"); > + break;

Re: [PATCH weston v3 4/5] Enables output in the JUnit XML format.

2015-05-29 Thread Bryce Harrington
On Tue, May 26, 2015 at 04:06:40PM -0700, Jon A. Cruz wrote: > Adds basic support fo optionally outputting in the XML format for > commonly used by JUnit compatible tools. Can you add why we might care about having this format, in addition to TAP? > Signed-off-by: Jon A. Cruz > --- > Makefile

[PATCH weston v3 4/5] Enables output in the JUnit XML format.

2015-05-26 Thread Jon A. Cruz
Adds basic support fo optionally outputting in the XML format commonly used by JUnit compatible tools. Signed-off-by: Jon A. Cruz --- Makefile.am | 2 + tools/zunitc/inc/zunitc/zunitc.h | 7 + tools/zunitc/src/zuc_junit_reporter.c | 414