From patchwork Fri Jan 9 10:16:51 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 427012 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 1892514016A for ; Fri, 9 Jan 2015 21:25:10 +1100 (AEDT) Received: from localhost ([::1]:49869 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y9Wke-0001LA-7b for incoming@patchwork.ozlabs.org; Fri, 09 Jan 2015 05:25:08 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53608) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y9WdQ-0004ua-EY for qemu-devel@nongnu.org; Fri, 09 Jan 2015 05:17:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y9WdP-00019H-Kc for qemu-devel@nongnu.org; Fri, 09 Jan 2015 05:17:40 -0500 Received: from mx1.redhat.com ([209.132.183.28]:36653) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y9WdP-00018b-Dd for qemu-devel@nongnu.org; Fri, 09 Jan 2015 05:17:39 -0500 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 (8.14.4/8.14.4) with ESMTP id t09AHa30023607 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Fri, 9 Jan 2015 05:17:37 -0500 Received: from localhost (ovpn-112-80.ams2.redhat.com [10.36.112.80]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t09AHZ3H005950; Fri, 9 Jan 2015 05:17:36 -0500 From: Stefan Hajnoczi To: Date: Fri, 9 Jan 2015 10:16:51 +0000 Message-Id: <1420798626-11428-12-git-send-email-stefanha@redhat.com> In-Reply-To: <1420798626-11428-1-git-send-email-stefanha@redhat.com> References: <1420798626-11428-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Peter Maydell , Fam Zheng , Stefan Hajnoczi Subject: [Qemu-devel] [PULL 11/26] tests/Makefile: Add check-block to make check on Linux X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Fam Zheng "make check-block" does nothing on other platforms, but still takes some time to enumerate all the tests. So let's only add it for Linux for now. Signed-off-by: Fam Zheng Signed-off-by: Stefan Hajnoczi --- tests/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/Makefile b/tests/Makefile index 77f995d..be91769 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -469,6 +469,9 @@ check-qtest: $(patsubst %,check-qtest-%, $(QTEST_TARGETS)) check-unit: $(patsubst %,check-%, $(check-unit-y)) check-block: $(patsubst %,check-%, $(check-block-y)) check: check-qapi-schema check-unit check-qtest +ifeq ($(CONFIG_LINUX),y) +check: check-block +endif check-clean: $(MAKE) -C tests/tcg clean rm -rf $(check-unit-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y)