From nobody Wed Nov 5 22:17:04 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=linaro.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1538400126250469.86153646277717; Mon, 1 Oct 2018 06:22:06 -0700 (PDT) Received: from localhost ([::1]:38677 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g6y99-0001Wc-Pg for importer@patchew.org; Mon, 01 Oct 2018 09:21:59 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58015) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g6y89-0001As-Pk for qemu-devel@nongnu.org; Mon, 01 Oct 2018 09:20:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g6y84-0004OC-19 for qemu-devel@nongnu.org; Mon, 01 Oct 2018 09:20:57 -0400 Received: from orth.archaic.org.uk ([2001:8b0:1d0::2]:51516) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g6y83-0004IC-O8; Mon, 01 Oct 2018 09:20:51 -0400 Received: from pm215 by orth.archaic.org.uk with local (Exim 4.89) (envelope-from ) id 1g6y7s-0006Ds-N8; Mon, 01 Oct 2018 14:20:40 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Date: Mon, 1 Oct 2018 14:20:36 +0100 Message-Id: <20181001132036.7919-1-peter.maydell@linaro.org> X-Mailer: git-send-email 2.19.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2001:8b0:1d0::2 Subject: [Qemu-devel] [PATCH] tests: Disable test-bdrv-drain and test-replication 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: Kevin Wolf , qemu-block@nongnu.org, patches@linaro.org, Wen Congyang , Xie Changlong , Max Reitz Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RDMRC_1 RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" The test-bdrv-drain and test-replication tests have intermittent errors which make my build testing process fail way too often. Disable them both for the moment. Signed-off-by: Peter Maydell --- I'm having trouble making forward progress with applying merges because of these flaky tests :-( tests/Makefile.include | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.include b/tests/Makefile.include index d0c0a92e67d..1cb1e1a1da7 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -91,7 +91,7 @@ gcov-files-test-thread-pool-y =3D thread-pool.c gcov-files-test-hbitmap-y =3D util/hbitmap.c check-unit-y +=3D tests/test-hbitmap$(EXESUF) gcov-files-test-hbitmap-y =3D blockjob.c -check-unit-y +=3D tests/test-bdrv-drain$(EXESUF) +#check-unit-y +=3D tests/test-bdrv-drain$(EXESUF) check-unit-y +=3D tests/test-blockjob$(EXESUF) check-unit-y +=3D tests/test-blockjob-txn$(EXESUF) check-unit-y +=3D tests/test-block-backend$(EXESUF) @@ -167,7 +167,7 @@ check-unit-y +=3D tests/test-crypto-xts$(EXESUF) check-unit-y +=3D tests/test-crypto-block$(EXESUF) check-unit-y +=3D tests/test-logging$(EXESUF) gcov-files-test-logging-y =3D util/log.c -check-unit-$(CONFIG_REPLICATION) +=3D tests/test-replication$(EXESUF) +#check-unit-$(CONFIG_REPLICATION) +=3D tests/test-replication$(EXESUF) check-unit-y +=3D tests/test-bufferiszero$(EXESUF) gcov-files-check-bufferiszero-y =3D util/bufferiszero.c check-unit-y +=3D tests/test-uuid$(EXESUF) --=20 2.19.0