From patchwork Sat Apr 11 18:34:49 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 460402 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 C07481401DE for ; Sun, 12 Apr 2015 04:35:32 +1000 (AEST) Received: from localhost ([::1]:43513 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yh0Fb-0002bn-Mx for incoming@patchwork.ozlabs.org; Sat, 11 Apr 2015 14:35:27 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54974) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yh0F7-0001l6-TA for qemu-devel@nongnu.org; Sat, 11 Apr 2015 14:34:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yh0F6-00030V-7J for qemu-devel@nongnu.org; Sat, 11 Apr 2015 14:34:57 -0400 Received: from cantor2.suse.de ([195.135.220.15]:38060 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yh0F6-000306-0f for qemu-devel@nongnu.org; Sat, 11 Apr 2015 14:34:56 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 7407DACE4; Sat, 11 Apr 2015 18:34:55 +0000 (UTC) From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Sat, 11 Apr 2015 20:34:49 +0200 Message-Id: <1428777292-24628-5-git-send-email-afaerber@suse.de> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1428777292-24628-1-git-send-email-afaerber@suse.de> References: <1428777292-24628-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] X-Received-From: 195.135.220.15 Cc: peter.maydell@linaro.org, =?UTF-8?q?Andreas=20F=C3=A4rber?= , rth@twiddle.net Subject: [Qemu-devel] [PATCH for-2.3? 4/7] tests/tcg: Fix running x86_64 tests 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 When ARCH != i386, the wrong test target was being added to the list of tests to run. Fix this to have test-x86_64 run as well. Note that test-x86_64 produces two build warnings on gcc 4.8.3, but we don't use -Werror for these tests: test-i386.c:2110:1: warning: specifying vector types with __attribute__ ((mode)) is deprecated [-Wattributes] typedef int __m64 __attribute__ ((__mode__ (__V2SI__))); test-i386.c:2110:1: warning: use __attribute__ ((vector_size)) instead [-Wattributes] test-i386.c:2111:1: warning: specifying vector types with __attribute__ ((mode)) is deprecated [-Wattributes] typedef float __m128 __attribute__ ((__mode__(__V4SF__))); test-i386.c:2111:1: warning: use __attribute__ ((vector_size)) instead [-Wattributes] Signed-off-by: Andreas Färber Reviewed-by: Alex Bennée --- tests/tcg/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tcg/Makefile b/tests/tcg/Makefile index d79e0bb..ab1055f 100644 --- a/tests/tcg/Makefile +++ b/tests/tcg/Makefile @@ -29,7 +29,7 @@ I386_TESTS=hello-i386 \ # native i386 compilers sometimes are not biarch. assume cross-compilers are ifneq ($(ARCH),i386) -I386_TESTS+=run-test-x86_64 +I386_TESTS+=test-x86_64 endif TESTS = test_path