From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34240) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmdKM-00021L-VV for qemu-devel@nongnu.org; Thu, 15 Oct 2015 03:51:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZmdKI-0002Px-Lr for qemu-devel@nongnu.org; Thu, 15 Oct 2015 03:51:54 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36018) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmdKI-0002Pn-Ey for qemu-devel@nongnu.org; Thu, 15 Oct 2015 03:51:50 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 21A67354193 for ; Thu, 15 Oct 2015 07:51:50 +0000 (UTC) Received: from blackfin.pond.sub.org (ovpn-116-32.ams2.redhat.com [10.36.116.32]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t9F7pkVP002104 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Thu, 15 Oct 2015 03:51:48 -0400 From: Markus Armbruster Date: Thu, 15 Oct 2015 09:51:33 +0200 Message-Id: <1444895505-16067-1-git-send-email-armbru@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 00/12] QAPI patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The following changes since commit c49d3411faae8ffaab8f7e5db47405a008411c= 10: Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2015-10-12'= into staging (2015-10-13 10:42:06 +0100) are available in the git repository at: git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2015-10-15 for you to fetch changes up to 99df5289d8c7ebf373c3570d8fba3f3a73360281: qapi: Track location that created an implicit type (2015-10-15 08:39:08= +0200) ---------------------------------------------------------------- QAPI patches ---------------------------------------------------------------- Eric Blake (12): qapi: Fix regression with '-netdev help' qapi: Use predicate callback to determine visit filtering qapi: Prepare for errors during check() qapi: Drop redundant alternate-good test qapi: Move empty-enum to compile-time test qapi: Drop redundant returns-int test qapi: Drop redundant flat-union-reverse-define test qapi: Drop redundant args-member-array test qapi: Don't use info as witness of implicit object type qapi: Lazy creation of array types qapi: Create simple union type member earlier qapi: Track location that created an implicit type qapi-schema.json | 11 ++ scripts/qapi-introspect.py | 5 +- scripts/qapi-types.py | 20 +-- scripts/qapi-visit.py | 22 ++-- scripts/qapi.py | 149 ++++++++++++++---= ------ tests/Makefile | 5 - tests/qapi-schema/alternate-good.err | 0 tests/qapi-schema/alternate-good.exit | 1 - tests/qapi-schema/alternate-good.json | 9 -- tests/qapi-schema/alternate-good.out | 10 -- tests/qapi-schema/args-member-array.err | 0 tests/qapi-schema/args-member-array.exit | 1 - tests/qapi-schema/args-member-array.json | 4 - tests/qapi-schema/args-member-array.out | 9 -- tests/qapi-schema/enum-empty.err | 0 tests/qapi-schema/enum-empty.exit | 1 - tests/qapi-schema/enum-empty.json | 2 - tests/qapi-schema/enum-empty.out | 2 - tests/qapi-schema/flat-union-reverse-define.err | 0 tests/qapi-schema/flat-union-reverse-define.exit | 1 - tests/qapi-schema/flat-union-reverse-define.json | 17 --- tests/qapi-schema/flat-union-reverse-define.out | 13 -- tests/qapi-schema/qapi-schema-test.json | 26 +++- tests/qapi-schema/qapi-schema-test.out | 14 ++- tests/qapi-schema/returns-int.err | 0 tests/qapi-schema/returns-int.exit | 1 - tests/qapi-schema/returns-int.json | 3 - tests/qapi-schema/returns-int.out | 3 - tests/test-qmp-commands.c | 4 +- 29 files changed, 162 insertions(+), 171 deletions(-) delete mode 100644 tests/qapi-schema/alternate-good.err delete mode 100644 tests/qapi-schema/alternate-good.exit delete mode 100644 tests/qapi-schema/alternate-good.json delete mode 100644 tests/qapi-schema/alternate-good.out delete mode 100644 tests/qapi-schema/args-member-array.err delete mode 100644 tests/qapi-schema/args-member-array.exit delete mode 100644 tests/qapi-schema/args-member-array.json delete mode 100644 tests/qapi-schema/args-member-array.out delete mode 100644 tests/qapi-schema/enum-empty.err delete mode 100644 tests/qapi-schema/enum-empty.exit delete mode 100644 tests/qapi-schema/enum-empty.json delete mode 100644 tests/qapi-schema/enum-empty.out delete mode 100644 tests/qapi-schema/flat-union-reverse-define.err delete mode 100644 tests/qapi-schema/flat-union-reverse-define.exit delete mode 100644 tests/qapi-schema/flat-union-reverse-define.json delete mode 100644 tests/qapi-schema/flat-union-reverse-define.out delete mode 100644 tests/qapi-schema/returns-int.err delete mode 100644 tests/qapi-schema/returns-int.exit delete mode 100644 tests/qapi-schema/returns-int.json delete mode 100644 tests/qapi-schema/returns-int.out --=20 2.4.3