Add qemu 2.4.0
[kvmfornfv.git] / qemu / tests / qapi-schema / test-qapi.py
1 #
2 # QAPI parser test harness
3 #
4 # Copyright (c) 2013 Red Hat Inc.
5 #
6 # Authors:
7 #  Markus Armbruster <armbru@redhat.com>
8 #
9 # This work is licensed under the terms of the GNU GPL, version 2 or later.
10 # See the COPYING file in the top-level directory.
11 #
12
13 from qapi import *
14 from pprint import pprint
15 import os
16 import sys
17
18 try:
19     exprs = parse_schema(sys.argv[1])
20 except SystemExit:
21     raise
22
23 pprint(exprs)
24 pprint(enum_types)
25 pprint(struct_types)