From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Jones Subject: [kvm-unit-tests PATCH 5/9] unittests.cfg: use double quotes Date: Fri, 10 Jul 2015 18:44:59 +0200 Message-ID: <1436546703-12258-6-git-send-email-drjones@redhat.com> References: <1436546703-12258-1-git-send-email-drjones@redhat.com> Cc: pbonzini@redhat.com, mtosatti@redhat.com, jen@redhat.com To: kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:41365 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932202AbbGJQpO (ORCPT ); Fri, 10 Jul 2015 12:45:14 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 949042D2F08 for ; Fri, 10 Jul 2015 16:45:14 +0000 (UTC) In-Reply-To: <1436546703-12258-1-git-send-email-drjones@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: Quotes, bash, and bash generation from bash are painful enough without having to handle both single and double quotes. Let's just handle double. This prepares for the mkstandalone script coming in a later patch. Signed-off-by: Andrew Jones --- arm/unittests.cfg | 8 ++++---- x86/unittests.cfg | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/arm/unittests.cfg b/arm/unittests.cfg index ee655b2678a4e..32fb4bb6c146b 100644 --- a/arm/unittests.cfg +++ b/arm/unittests.cfg @@ -14,24 +14,24 @@ [selftest::setup] file = selftest.flat smp = 2 -extra_params = -m 256 -append 'setup smp=2 mem=256' +extra_params = -m 256 -append "setup smp=2 mem=256" groups = selftest # Test vector setup and exception handling (kernel mode). [selftest::vectors-kernel] file = selftest.flat -extra_params = -append 'vectors-kernel' +extra_params = -append "vectors-kernel" groups = selftest # Test vector setup and exception handling (user mode). [selftest::vectors-user] file = selftest.flat -extra_params = -append 'vectors-user' +extra_params = -append "vectors-user" groups = selftest # Test SMP support [selftest::smp] file = selftest.flat smp = $(getconf _NPROCESSORS_CONF) -extra_params = -append 'smp' +extra_params = -append "smp" groups = selftest diff --git a/x86/unittests.cfg b/x86/unittests.cfg index a38544f77c056..bc49d33670287 100644 --- a/x86/unittests.cfg +++ b/x86/unittests.cfg @@ -27,44 +27,44 @@ smp = 3 [vmexit_cpuid] file = vmexit.flat -extra_params = -append 'cpuid' +extra_params = -append "cpuid" groups = vmexit [vmexit_vmcall] file = vmexit.flat -extra_params = -append 'vmcall' +extra_params = -append "vmcall" groups = vmexit [vmexit_mov_from_cr8] file = vmexit.flat -extra_params = -append 'mov_from_cr8' +extra_params = -append "mov_from_cr8" groups = vmexit [vmexit_mov_to_cr8] file = vmexit.flat -extra_params = -append 'mov_to_cr8' +extra_params = -append "mov_to_cr8" groups = vmexit [vmexit_inl_pmtimer] file = vmexit.flat -extra_params = -append 'inl_from_pmtimer' +extra_params = -append "inl_from_pmtimer" groups = vmexit [vmexit_ipi] file = vmexit.flat smp = 2 -extra_params = -append 'ipi' +extra_params = -append "ipi" groups = vmexit [vmexit_ipi_halt] file = vmexit.flat smp = 2 -extra_params = -append 'ipi_halt' +extra_params = -append "ipi_halt" groups = vmexit [vmexit_ple_round_robin] file = vmexit.flat -extra_params = -append 'ple_round_robin' +extra_params = -append "ple_round_robin" groups = vmexit [access] -- 2.4.3