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;
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
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