From patchwork Tue Oct 11 12:37:47 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 9370749 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id A13CD6048F for ; Tue, 11 Oct 2016 12:38:57 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 93E61293A7 for ; Tue, 11 Oct 2016 12:38:57 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 88A98294D0; Tue, 11 Oct 2016 12:38:57 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 21F54293A7 for ; Tue, 11 Oct 2016 12:38:57 +0000 (UTC) Received: from localhost ([::1]:55487 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btwKe-0001Ue-4A for patchwork-qemu-devel@patchwork.kernel.org; Tue, 11 Oct 2016 08:38:56 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53537) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btwJw-0001GS-Dp for qemu-devel@nongnu.org; Tue, 11 Oct 2016 08:38:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1btwJu-0002pQ-EC for qemu-devel@nongnu.org; Tue, 11 Oct 2016 08:38:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46052) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btwJu-0002pF-7D for qemu-devel@nongnu.org; Tue, 11 Oct 2016 08:38:10 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B4C41C05A2BD; Tue, 11 Oct 2016 12:38:09 +0000 (UTC) Received: from localhost (ovpn-116-57.phx2.redhat.com [10.3.116.57]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u9BCc8bQ001612; Tue, 11 Oct 2016 08:38:09 -0400 From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Tue, 11 Oct 2016 09:37:47 -0300 Message-Id: <1476189467-11804-3-git-send-email-ehabkost@redhat.com> In-Reply-To: <1476189467-11804-1-git-send-email-ehabkost@redhat.com> References: <1476189467-11804-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Tue, 11 Oct 2016 12:38:09 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 2/2] tests: check-qom-proplist: Use &error_abort to catch errors X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Markus Armbruster , =?UTF-8?q?Andreas=20F=C3=A4rber?= Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP Use &error_abort so we don't ignore any errors on the property registration calls. Signed-off-by: Eduardo Habkost Reviewed-by: Daniel P. Berrange --- tests/check-qom-proplist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/check-qom-proplist.c b/tests/check-qom-proplist.c index 693dc4c..a92acc9 100644 --- a/tests/check-qom-proplist.c +++ b/tests/check-qom-proplist.c @@ -123,7 +123,7 @@ static void dummy_init(Object *obj) object_property_add_bool(obj, "bv", dummy_get_bv, dummy_set_bv, - NULL); + &error_abort); } @@ -132,13 +132,13 @@ static void dummy_class_init(ObjectClass *cls, void *data) object_class_property_add_str(cls, "sv", dummy_get_sv, dummy_set_sv, - NULL); + &error_abort); object_class_property_add_enum(cls, "av", "DummyAnimal", dummy_animal_map, dummy_get_av, dummy_set_av, - NULL); + &error_abort); }