From patchwork Thu Jun 3 11:03:17 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Goldish X-Patchwork-Id: 104075 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o53B3cbQ004891 for ; Thu, 3 Jun 2010 11:03:38 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752615Ab0FCLDg (ORCPT ); Thu, 3 Jun 2010 07:03:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:3779 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752605Ab0FCLDe (ORCPT ); Thu, 3 Jun 2010 07:03:34 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o53B3XiL021025 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 3 Jun 2010 07:03:33 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o53B3WGM031906; Thu, 3 Jun 2010 07:03:33 -0400 Received: from localhost.localdomain (dhcp-1-188.tlv.redhat.com [10.35.1.188]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id o53B3QFe025307; Thu, 3 Jun 2010 07:03:31 -0400 From: Michael Goldish To: autotest@test.kernel.org, kvm@vger.kernel.org Cc: Michael Goldish Subject: [KVM-AUTOTEST PATCH 4/4] KVM test: add sample RHEL-6 style unittest config file Date: Thu, 3 Jun 2010 14:03:17 +0300 Message-Id: <1275562997-26311-4-git-send-email-mgoldish@redhat.com> In-Reply-To: <1275562997-26311-3-git-send-email-mgoldish@redhat.com> References: <1275562997-26311-1-git-send-email-mgoldish@redhat.com> <1275562997-26311-2-git-send-email-mgoldish@redhat.com> <1275562997-26311-3-git-send-email-mgoldish@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 03 Jun 2010 11:03:39 +0000 (UTC) diff --git a/client/tests/kvm/unittests.cfg.sample b/client/tests/kvm/unittests.cfg.sample new file mode 100644 index 0000000..f214337 --- /dev/null +++ b/client/tests/kvm/unittests.cfg.sample @@ -0,0 +1,98 @@ +# Copy this file to tests_base.cfg and edit it. +# +# Define the objects we'll be using +vms = vm1 + +# Choose the main VM +main_vm = vm1 + +# Some preprocessor/postprocessor params +start_vm = yes +kill_vm = yes +kill_vm_gracefully = no + +# Screendump specific stuff +convert_ppm_files_to_png_on_error = yes +#keep_ppm_files = yes +#keep_ppm_files_on_error = yes +take_regular_screendumps = yes +keep_screendumps_on_error = yes +screendump_delay = 5 +screendump_quality = 30 +screendump_temp_dir = /dev/shm + +# Some default VM params +qemu_binary = qemu +qemu_img_binary = qemu-img +smp = 1 +mem = 512 +display = vnc + +# Default scheduler params +used_cpus = 1 +used_mem = 512 + +# NIC parameters +run_tcpdump = no + +# Misc +run_kvm_stat = yes + + +# Tests +variants: + # (This variant is defined only in order make all test names begin with 'unittest.') + - unittest: + type = unittest + unittest_timeout = 600 + log_output = yes + testdev = yes + extra_params += " -S" + + # All kernels and reference output files are expected under unittests/ + kernel = unittests/ + reference_output = unittests/ + + variants: + - access: + kernel += access.flat + reference_output += access.log.ref + - apic: + kernel += apic.flat + reference_output += apic.log.ref + - emulator: + kernel += emulator.flat + reference_output += emulator.log.ref + - hypercall: + kernel += hypercall.flat + reference_output += hypercall.log.ref + - memtest1: + kernel += memtest1.flat + reference_output += memtest1.log.ref + - msr: + kernel += msr.flat + reference_output += msr.log.ref + - port80: + kernel += port80.flat + reference_output += port80.log.ref + - realmode: + kernel += realmode.flat + reference_output += realmode.log.ref + - sieve: + kernel += sieve.flat + reference_output += sieve.log.ref + - simple: + kernel += simple.flat + reference_output += simple.log.ref + - smptest: + kernel += smptest.flat + reference_output += smptest.log.ref + - stringio: + kernel += stringio.flat + reference_output += stringio.log.ref + - tsc: + kernel += tsc.flat + reference_output += tsc.log.ref + - vmexit: + kernel += vmexit.flat + reference_output += vmexit.log.ref