From nobody Wed Nov 5 22:16:00 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (208.118.235.17 [208.118.235.17]) by mx.zohomail.com with SMTPS id 1538403294238595.7851772621992; Mon, 1 Oct 2018 07:14:54 -0700 (PDT) Received: from localhost ([::1]:38844 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g6yyC-000285-3W for importer@patchew.org; Mon, 01 Oct 2018 10:14:44 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40198) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g6yx1-0000uY-JK for qemu-devel@nongnu.org; Mon, 01 Oct 2018 10:13:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g6ywv-0004Zf-Kc for qemu-devel@nongnu.org; Mon, 01 Oct 2018 10:13:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44494) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g6ywo-0004N4-Dz for qemu-devel@nongnu.org; Mon, 01 Oct 2018 10:13:22 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3DB2D307D849; Mon, 1 Oct 2018 14:13:15 +0000 (UTC) Received: from thuth.com (dhcp-200-199.str.redhat.com [10.33.200.199]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5C0F96C8C4; Mon, 1 Oct 2018 14:13:14 +0000 (UTC) From: Thomas Huth To: Eduardo Habkost Date: Mon, 1 Oct 2018 16:13:10 +0200 Message-Id: <1538403190-27146-1-git-send-email-thuth@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.48]); Mon, 01 Oct 2018 14:13:15 +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] scripts/device-crash-test: Remove entries for serial devices 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: Peter Maydell , qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RDMRC_1 RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The problem with the various serial devices has been fixed a while ago in commit 47c4f85a0c27888e12af827471cfef87deb49821 ("hw/char/serial: Allow disconnected chardevs") already, so we can remove these entries from the "ignore" list in the device-crash-test script now. Signed-off-by: Thomas Huth --- scripts/device-crash-test | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/device-crash-test b/scripts/device-crash-test index e6c233e..3422475 100755 --- a/scripts/device-crash-test +++ b/scripts/device-crash-test @@ -99,7 +99,6 @@ ERROR_WHITELIST =3D [ {'device':'isa-ipmi-bt', 'expected':True}, # IPMI device r= equires a bmc attribute to be set {'device':'isa-ipmi-kcs', 'expected':True}, # IPMI device r= equires a bmc attribute to be set {'device':'isa-parallel', 'expected':True}, # Can't create = serial device, empty char device - {'device':'isa-serial', 'expected':True}, # Can't create = serial device, empty char device {'device':'ivshmem', 'expected':True}, # You must spec= ify either 'shm' or 'chardev' {'device':'ivshmem-doorbell', 'expected':True}, # You must spec= ify a 'chardev' {'device':'ivshmem-plain', 'expected':True}, # You must spec= ify a 'memdev' @@ -110,9 +109,6 @@ ERROR_WHITELIST =3D [ {'device':'pc-dimm', 'expected':True}, # 'memdev' prop= erty is not set {'device':'pci-bridge', 'expected':True}, # Bridge chassi= s not specified. Each bridge is required to be assigned a unique chassis id= > 0. {'device':'pci-bridge-seat', 'expected':True}, # Bridge chassi= s not specified. Each bridge is required to be assigned a unique chassis id= > 0. - {'device':'pci-serial', 'expected':True}, # Can't create = serial device, empty char device - {'device':'pci-serial-2x', 'expected':True}, # Can't create = serial device, empty char device - {'device':'pci-serial-4x', 'expected':True}, # Can't create = serial device, empty char device {'device':'pxa2xx-dma', 'expected':True}, # channels valu= e invalid {'device':'pxb', 'expected':True}, # Bridge chassi= s not specified. Each bridge is required to be assigned a unique chassis id= > 0. {'device':'scsi-block', 'expected':True}, # drive propert= y not set @@ -218,7 +214,6 @@ ERROR_WHITELIST =3D [ {'exitcode':-6, 'log':r"Object .* is not an instance of type generic-p= c-machine", 'loglevel':logging.ERROR}, {'exitcode':-6, 'log':r"Object .* is not an instance of type e500-ccsr= ", 'loglevel':logging.ERROR}, {'exitcode':-6, 'log':r"vmstate_register_with_alias_id: Assertion `!se= ->compat \|\| se->instance_id =3D=3D 0' failed", 'loglevel':logging.ERROR}, - {'exitcode':-11, 'device':'isa-serial', 'loglevel':logging.ERROR, 'exp= ected':True}, =20 # everything else (including SIGABRT and SIGSEGV) will be a fatal erro= r: {'exitcode':None, 'fatal':True, 'loglevel':logging.FATAL}, --=20 1.8.3.1