mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
qapi: Use an explicit input file
Use an explicit input file on the command-line instead of reading from standard input. It also outputs the proper file name when there's an error. 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>
This commit is contained in:
parent
98c1200af1
commit
33aaad529e
25 changed files with 54 additions and 42 deletions
|
@ -243,17 +243,17 @@ tests/test-vmstate$(EXESUF): tests/test-vmstate.o \
|
|||
tests/test-qapi-types.c tests/test-qapi-types.h :\
|
||||
$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py
|
||||
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
|
||||
$(gen-out-type) -o tests -p "test-" < $<, \
|
||||
$(gen-out-type) -o tests -p "test-" -i $<, \
|
||||
" GEN $@")
|
||||
tests/test-qapi-visit.c tests/test-qapi-visit.h :\
|
||||
$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-visit.py
|
||||
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
|
||||
$(gen-out-type) -o tests -p "test-" < $<, \
|
||||
$(gen-out-type) -o tests -p "test-" -i $<, \
|
||||
" GEN $@")
|
||||
tests/test-qmp-commands.h tests/test-qmp-marshal.c :\
|
||||
$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-commands.py
|
||||
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
|
||||
$(gen-out-type) -o tests -p "test-" < $<, \
|
||||
$(gen-out-type) -o tests -p "test-" -i $<, \
|
||||
" GEN $@")
|
||||
|
||||
tests/test-string-output-visitor$(EXESUF): tests/test-string-output-visitor.o $(test-qapi-obj-y) libqemuutil.a libqemustub.a
|
||||
|
@ -408,11 +408,12 @@ check-tests/test-qapi.py: tests/test-qapi.py
|
|||
$(patsubst %, check-%, $(check-qapi-schema-y)): check-%.json: $(SRC_PATH)/%.json
|
||||
$(call quiet-command, PYTHONPATH=$(SRC_PATH)/scripts \
|
||||
$(PYTHON) $(SRC_PATH)/tests/qapi-schema/test-qapi.py \
|
||||
<$^ >$*.test.out 2>$*.test.err; \
|
||||
$^ >$*.test.out 2>$*.test.err; \
|
||||
echo $$? >$*.test.exit, \
|
||||
" TEST $*.out")
|
||||
@diff -q $(SRC_PATH)/$*.out $*.test.out
|
||||
@diff -q $(SRC_PATH)/$*.err $*.test.err
|
||||
@# Sanitize error messages (make them independent of build directory)
|
||||
@perl -p -e 's|\Q$(SRC_PATH)\E/||g' $*.test.err | diff -q $(SRC_PATH)/$*.err -
|
||||
@diff -q $(SRC_PATH)/$*.exit $*.test.exit
|
||||
|
||||
# Consolidated targets
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:2:10: Duplicate key "key"
|
||||
tests/qapi-schema/duplicate-key.json:2:10: Duplicate key "key"
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:13: Discriminator value 'value_wrong' is not found in enum 'TestEnum'
|
||||
tests/qapi-schema/flat-union-invalid-branch-key.json:13: Discriminator value 'value_wrong' is not found in enum 'TestEnum'
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:13: Discriminator 'enum_wrong' is not a member of base type 'TestBase'
|
||||
tests/qapi-schema/flat-union-invalid-discriminator.json:13: Discriminator 'enum_wrong' is not a member of base type 'TestBase'
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:7: Flat union 'TestUnion' must have a base field
|
||||
tests/qapi-schema/flat-union-no-base.json:7: Flat union 'TestUnion' must have a base field
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:13: Discriminator 'kind' must be of enumeration type
|
||||
tests/qapi-schema/flat-union-string-discriminator.json:13: Discriminator 'kind' must be of enumeration type
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:2:36: Stray ";"
|
||||
tests/qapi-schema/funny-char.json:2:36: Stray ";"
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:1:10: Expected ":"
|
||||
tests/qapi-schema/missing-colon.json:1:10: Expected ":"
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:2:20: Expected "," or "]"
|
||||
tests/qapi-schema/missing-comma-list.json:2:20: Expected "," or "]"
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:2:3: Expected "," or "}"
|
||||
tests/qapi-schema/missing-comma-object.json:2:3: Expected "," or "}"
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:1:1: Expected "{"
|
||||
tests/qapi-schema/non-objects.json:1:1: Expected "{"
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:1:1: Expected "{"
|
||||
tests/qapi-schema/quoted-structural-chars.json:1:1: Expected "{"
|
||||
|
|
|
@ -12,10 +12,11 @@
|
|||
|
||||
from qapi import *
|
||||
from pprint import pprint
|
||||
import os
|
||||
import sys
|
||||
|
||||
try:
|
||||
exprs = parse_schema(sys.stdin)
|
||||
exprs = parse_schema(sys.argv[1])
|
||||
except SystemExit:
|
||||
raise
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:2:36: Expected "{", "[" or string
|
||||
tests/qapi-schema/trailing-comma-list.json:2:36: Expected "{", "[" or string
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:2:38: Expected string
|
||||
tests/qapi-schema/trailing-comma-object.json:2:38: Expected string
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:1:20: Expected "," or "]"
|
||||
tests/qapi-schema/unclosed-list.json:1:20: Expected "," or "]"
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:1:21: Expected "," or "}"
|
||||
tests/qapi-schema/unclosed-object.json:1:21: Expected "," or "}"
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:1:11: Missing terminating "'"
|
||||
tests/qapi-schema/unclosed-string.json:1:11: Missing terminating "'"
|
||||
|
|
|
@ -1 +1 @@
|
|||
<stdin>:7: Base 'TestBaseWrong' is not a valid type
|
||||
tests/qapi-schema/union-invalid-base.json:7: Base 'TestBaseWrong' is not a valid type
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue