From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Wolf 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> References: <1365766060-7604-1-git-send-email-kwolf@redhat.com> Cc: kwolf@redhat.com, gleb@redhat.com, mtosatti@redhat.com, lmr@redhat.com To: kvm@vger.kernel.org Return-path: 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 In-Reply-To: <1365766060-7604-1-git-send-email-kwolf@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: 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 -- 1.8.1.4