From patchwork Thu Jun 23 05:48:31 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Gibson X-Patchwork-Id: 639488 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 3rZr9g5nnKz9sC3 for ; Thu, 23 Jun 2016 15:48:39 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=gibson.dropbear.id.au header.i=@gibson.dropbear.id.au header.b=bhjC6ZjY; dkim-atps=neutral Received: from localhost ([::1]:34395 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFxVF-0000OM-37 for incoming@patchwork.ozlabs.org; Thu, 23 Jun 2016 01:48:37 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35807) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFxTq-00075w-5t for qemu-devel@nongnu.org; Thu, 23 Jun 2016 01:47:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bFxTo-0002Yu-8w for qemu-devel@nongnu.org; Thu, 23 Jun 2016 01:47:09 -0400 Received: from ozlabs.org ([2401:3900:2:1::2]:40240) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFxTn-0002Xh-Tc; Thu, 23 Jun 2016 01:47:08 -0400 Received: by ozlabs.org (Postfix, from userid 1007) id 3rZr7p2Mw4z9t15; Thu, 23 Jun 2016 15:47:01 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1466660822; bh=EGsqcvkAeLeqE2JPvA9cvrNFr37opMbblxAUFjy3Djc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bhjC6ZjYquztc82xT3eZchJfwDYAGVs2C5TLLQ2bJ7exrcq2ikIw1dvzZHgWtNaTl AfkOqt+prC1JnrW472B/K9zTZ9UQOxTNmu4w8IK6G29E42W0j1KO9SZ0WMWSQ49/RO C2QLShm7zApkUM8p64TYLb7JP07U1uNlU6FfWqQU= From: David Gibson To: peter.maydell@linaro.org Date: Thu, 23 Jun 2016 15:48:31 +1000 Message-Id: <1466660926-1544-3-git-send-email-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1466660926-1544-1-git-send-email-david@gibson.dropbear.id.au> References: <1466660926-1544-1-git-send-email-david@gibson.dropbear.id.au> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2401:3900:2:1::2 Subject: [Qemu-devel] [PULL 02/17] tests: Use '+=' to add additional tests, not '=' 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: Thomas Huth , agraf@suse.de, qemu-devel@nongnu.org, qemu-ppc@nongnu.org, pbonzini@redhat.com, David Gibson Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" From: Thomas Huth The recent commit that added the prom-env-test accidentially overwrote the check-qtest-ppc-y, check-qtest-ppc64-y and check-qtest-sparc-y variables instead of extending them. Fixes: fcbf4a3c0c576eec1321f9cff4fa0dd8e0b1a82f Signed-off-by: Thomas Huth Signed-off-by: David Gibson --- tests/Makefile.include | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Makefile.include b/tests/Makefile.include index a2ed83b..fd2dba4 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -259,11 +259,11 @@ check-qtest-ppc-y += tests/boot-order-test$(EXESUF) check-qtest-ppc64-y += tests/boot-order-test$(EXESUF) check-qtest-ppc64-y += tests/spapr-phb-test$(EXESUF) gcov-files-ppc64-y += ppc64-softmmu/hw/ppc/spapr_pci.c -check-qtest-ppc-y = tests/prom-env-test$(EXESUF) -check-qtest-ppc64-y = tests/prom-env-test$(EXESUF) -check-qtest-sparc-y = tests/prom-env-test$(EXESUF) +check-qtest-ppc-y += tests/prom-env-test$(EXESUF) +check-qtest-ppc64-y += tests/prom-env-test$(EXESUF) +check-qtest-sparc-y += tests/prom-env-test$(EXESUF) #Disabled for now, triggers a TCG bug on 32-bit hosts -#check-qtest-sparc64-y = tests/prom-env-test$(EXESUF) +#check-qtest-sparc64-y += tests/prom-env-test$(EXESUF) check-qtest-microblazeel-y = $(check-qtest-microblaze-y) check-qtest-xtensaeb-y = $(check-qtest-xtensa-y)