From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37312) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eNJB7-0006hZ-Oj for qemu-devel@nongnu.org; Fri, 08 Dec 2017 08:59:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eNJB4-0008Go-JT for qemu-devel@nongnu.org; Fri, 08 Dec 2017 08:59:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55892) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eNJB4-0008G4-Cg for qemu-devel@nongnu.org; Fri, 08 Dec 2017 08:58:58 -0500 From: Markus Armbruster References: <20170911110623.24981-1-marcandre.lureau@redhat.com> <20170911110623.24981-21-marcandre.lureau@redhat.com> Date: Fri, 08 Dec 2017 14:58:48 +0100 In-Reply-To: <20170911110623.24981-21-marcandre.lureau@redhat.com> (=?utf-8?Q?=22Marc-Andr=C3=A9?= Lureau"'s message of "Mon, 11 Sep 2017 13:05:53 +0200") Message-ID: <87tvx1e2xz.fsf@dusky.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v3 20/50] qapi-event: add 'if' condition to generated enum List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?utf-8?Q?Marc-Andr=C3=A9?= Lureau Cc: qemu-devel@nongnu.org, Michael Roth Marc-Andr=C3=A9 Lureau writes: > Add condition to QAPIEvent enum members based on the event 'if'. > > Signed-off-by: Marc-Andr=C3=A9 Lureau > --- > scripts/qapi-event.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/qapi-event.py b/scripts/qapi-event.py > index 38f4264817..60c6f7030d 100644 > --- a/scripts/qapi-event.py > +++ b/scripts/qapi-event.py > @@ -168,7 +168,7 @@ class QAPISchemaGenEventVisitor(QAPISchemaVisitor): > def visit_event(self, name, info, ifcond, arg_type, boxed): > self.decl +=3D gen_event_send_decl(name, arg_type, boxed) > self.defn +=3D gen_event_send(name, arg_type, boxed) > - self._event_names.append(QAPISchemaMember(name)) > + self._event_names.append(QAPISchemaMember(name, ifcond)) >=20=20 >=20=20 > (input_file, output_dir, do_c, do_h, prefix, dummy) =3D parse_command_li= ne() No test coverage?