]> git.proxmox.com Git - mirror_qemu.git/commitdiff
qapi: Fix file name in error messages for included files
authorMarkus Armbruster <armbru@redhat.com>
Tue, 9 Jun 2015 16:32:29 +0000 (18:32 +0200)
committerMarkus Armbruster <armbru@redhat.com>
Thu, 18 Jun 2015 12:12:34 +0000 (14:12 +0200)
We print the name as it appears in the include expression.  Tools
processing error messages want it relative to the working directory.
Make it so.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
scripts/qapi.py
tests/qapi-schema/include-cycle.err
tests/qapi-schema/include-nested-err.err

index c2eb12ba3a49cc956bc1f028b87a878bbff6aef5..716e348a3c20dfc483de53a30f811fd4cd4545bf 100644 (file)
@@ -101,14 +101,13 @@ class QAPIExprError(Exception):
 
 class QAPISchema:
 
-    def __init__(self, fp, fname = None, include_hist = [],
+    def __init__(self, fp, include_hist = [],
                  previously_included = [], incl_info = None):
         """ include_hist is a stack used to detect inclusion cycles
             previously_included is a global state used to avoid multiple
                                 inclusions of the same file"""
         abs_fname = os.path.abspath(fp.name)
-        if fname is None:
-            fname = fp.name
+        fname = fp.name
         self.fname = fname
         self.include_hist = include_hist + [(fname, abs_fname)]
         previously_included.append(abs_fname)
@@ -148,7 +147,7 @@ class QAPISchema:
                 except IOError, e:
                     raise QAPIExprError(expr_info,
                                         '%s: %s' % (e.strerror, include))
-                exprs_include = QAPISchema(fobj, include, self.include_hist,
+                exprs_include = QAPISchema(fobj, self.include_hist,
                                            previously_included, expr_info)
                 self.exprs.extend(exprs_include.exprs)
             else:
index 602cf6232969f4422f1d9dfce1f736b09037dfb1..bdcd07dce25fc1c67b73d926c29efc0a97746adc 100644 (file)
@@ -1,3 +1,3 @@
 In file included from tests/qapi-schema/include-cycle.json:1:
-In file included from include-cycle-b.json:1:
-include-cycle-c.json:1: Inclusion loop for include-cycle.json
+In file included from tests/qapi-schema/include-cycle-b.json:1:
+tests/qapi-schema/include-cycle-c.json:1: Inclusion loop for include-cycle.json
index 1dacbda3be09c5cc563f61e1a92ab515220f8c31..1b7b22706bec9533082ca8a4d226b7135b8f7a53 100644 (file)
@@ -1,2 +1,2 @@
 In file included from tests/qapi-schema/include-nested-err.json:1:
-missing-colon.json:1:10: Expected ":"
+tests/qapi-schema/missing-colon.json:1:10: Expected ":"