Add XML dump visitor
[babeltrace.git] / formats / ctf / metadata / ctf-parser-test.c
CommitLineData
c59a87f5
MD
1/*
2 * ctf-parser-test.c
3 *
4 * Common Trace Format Parser Test
5 *
6 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 */
18
34d3acc4
MD
19#include <stdlib.h>
20#include <stdio.h>
21#include <glib.h>
22#include "ctf-scanner.h"
23#include "ctf-parser.h"
24#include "ctf-ast.h"
25
26extern int yydebug;
27
28int main(int argc, char **argv)
29{
30 struct ctf_scanner *scanner;
7de8808c 31 int ret = 0;
34d3acc4
MD
32
33 yydebug = 1;
34 scanner = ctf_scanner_alloc(stdin);
35 if (!scanner) {
36 fprintf(stderr, "Error allocating scanner\n");
37 return -1;
38 }
39 ctf_scanner_append_ast(scanner);
7de8808c
MD
40
41 if (ctf_visitor_print_xml(stdout, 0, &scanner->ast->root)) {
42 fprintf(stderr, "error visiting AST for XML output\n");
43 ret = -1;
44 }
34d3acc4 45 ctf_scanner_free(scanner);
7de8808c
MD
46
47 return ret;
34d3acc4
MD
48}
49
50
This page took 0.023859 seconds and 4 git commands to generate.