From patchwork Fri Apr 12 11:27:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Wolf X-Patchwork-Id: 2434941 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 1DCF0DFE82 for ; Fri, 12 Apr 2013 11:27:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755259Ab3DLL1u (ORCPT ); Fri, 12 Apr 2013 07:27:50 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43756 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754112Ab3DLL1t (ORCPT ); Fri, 12 Apr 2013 07:27:49 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3CBRnFV017297 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 12 Apr 2013 07:27:49 -0400 Received: from dhcp-200-207.str.redhat.com (ovpn-116-52.ams2.redhat.com [10.36.116.52]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r3CBRhsN013167; Fri, 12 Apr 2013 07:27:47 -0400 From: Kevin Wolf To: kvm@vger.kernel.org Cc: kwolf@redhat.com, gleb@redhat.com, mtosatti@redhat.com, lmr@redhat.com Subject: [PATCH kvm-unittests v2 2/4] x86/unittests.cfg: Add arch for x86_64-only tests Date: Fri, 12 Apr 2013 13:27:38 +0200 Message-Id: <1365766060-7604-3-git-send-email-kwolf@redhat.com> In-Reply-To: <1365766060-7604-1-git-send-email-kwolf@redhat.com> References: <1365766060-7604-1-git-send-email-kwolf@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Their kernel binaries would be missing when the tests are built for i386. Signed-off-by: Kevin Wolf --- x86/unittests.cfg | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/x86/unittests.cfg b/x86/unittests.cfg index 7d0fa73..f2336bb 100644 --- a/x86/unittests.cfg +++ b/x86/unittests.cfg @@ -10,6 +10,7 @@ file = apic.flat smp = 2 extra_params = -cpu qemu64,+x2apic +arch = x86_64 [smptest] file = smptest.flat @@ -55,15 +56,18 @@ extra_params = -append 'ple_round_robin' [access] file = access.flat +arch = x86_64 [emulator] file = emulator.flat +arch = x86_64 [hypercall] file = hypercall.flat [idt_test] file = idt_test.flat +arch = x86_64 [msr] file = msr.flat @@ -82,19 +86,23 @@ file = tsc.flat [xsave] file = xsave.flat +arch = x86_64 [rmap_chain] file = rmap_chain.flat +arch = x86_64 [svm] file = svm.flat smp = 2 extra_params = -cpu qemu64,+svm +arch = x86_64 [svm-disabled] file = svm.flat smp = 2 extra_params = -cpu qemu64,-svm +arch = x86_64 [kvmclock_test] file = kvmclock_test.flat @@ -103,4 +111,5 @@ extra_params = --append "10000000 `date +%s`" [pcid] file = pcid.flat -extra_params = -cpu qemu64,+pcid \ No newline at end of file +extra_params = -cpu qemu64,+pcid +arch = x86_64