diff options
author | Lluís Vilanova <vilanova@ac.upc.edu> | 2014-05-02 15:52:30 +0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2014-05-08 14:19:58 -0400 |
commit | 98c1200af149b5aa6d63d5aad5354fd5d888a8bf (patch) | |
tree | 2a2d2ace506125d4de676e689a1cfea5b27c0d41 /tests | |
parent | 0a60774906671391f1e9eb0e1af4bcb453688013 (diff) | |
download | qemu-98c1200af149b5aa6d63d5aad5354fd5d888a8bf.tar.gz qemu-98c1200af149b5aa6d63d5aad5354fd5d888a8bf.tar.bz2 qemu-98c1200af149b5aa6d63d5aad5354fd5d888a8bf.zip |
qapi: [trivial] Do not catch unknown exceptions in "test-qapi.py"
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qapi-schema/test-qapi.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/qapi-schema/test-qapi.py b/tests/qapi-schema/test-qapi.py index b3d1e1dbce..5a26ef3aa3 100644 --- a/tests/qapi-schema/test-qapi.py +++ b/tests/qapi-schema/test-qapi.py @@ -18,9 +18,6 @@ try: exprs = parse_schema(sys.stdin) except SystemExit: raise -except: - print >>sys.stderr, "Crashed:", sys.exc_info()[0] - exit(1) pprint(exprs) pprint(enum_types) |