[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20241122223756.GA2112434.vipinsh@google.com>
Date: Fri, 22 Nov 2024 14:37:56 -0800
From: Vipin Sharma <vipinsh@...gle.com>
To: Sean Christopherson <seanjc@...gle.com>
Cc: Andrew Jones <ajones@...tanamicro.com>, kvm@...r.kernel.org,
kvmarm@...ts.linux.dev, kvm-riscv@...ts.infradead.org,
linux-arm-kernel@...ts.infradead.org,
Paolo Bonzini <pbonzini@...hat.com>,
Anup Patel <anup@...infault.org>,
Christian Borntraeger <borntraeger@...ux.ibm.com>,
Janosch Frank <frankja@...ux.ibm.com>,
Claudio Imbrenda <imbrenda@...ux.ibm.com>,
Marc Zyngier <maz@...nel.org>,
Oliver Upton <oliver.upton@...ux.dev>, linux-kernel@...r.kernel.org
Subject: Re: [RFC PATCH 0/1] KVM selftests runner for running more than just
default
On 2024-11-20 16:29:16, Sean Christopherson wrote:
> On Fri, Nov 15, 2024, Vipin Sharma wrote:
> > On 2024-11-14 09:42:32, Sean Christopherson wrote:
> > > On Fri, Nov 08, 2024, Andrew Jones wrote:
> > > > On Wed, Nov 06, 2024 at 09:06:39AM -0800, Sean Christopherson wrote:
> > > > > On Fri, Nov 01, 2024, Vipin Sharma wrote:
> As discussed off-list, I think having one testcase per file is the way to go.
>
> - Very discoverable (literally files)
> - The user (or a shell script) can use regexes, globbing, etc., to select which
> tests to run
> - Creating "suites" is similarly easy, e.g. by having a list of files/testscase,
> or maybe by directory layout
>
> Keeping track of testcases (and their content), e.g. to avoid duplicates, might
> be an issue, but I think we can mitigate that by establishing and following
> guidelines for naming, e.g. so that the name of a testcase gives the user a
> decent idea of what it does.
>
> > > > Could also use an environment variable to specify a file which contains
> > > > a config in a test-specific format if parsing environment variables is
> > > > insufficient or awkward for configuring a test.
> > >
> > > There's no reason to use a environment variable for this. If we want to support
> > > "advanced" setup via a test configuration, then that can simply go in configuration
> > > file that's passed to the runner.
> >
> > Can you guys specify What does this test configuration file/directory
> > will look like? Also, is it gonna be a one file for one test? This might
> > become ugly soon.
>
> As above, I like the idea of one file per testcase. I'm not anticipating thousands
> of tests. Regardless of how we organize things, mentally keeping track of that
> many tests would be extremely difficult. E.g. testcases would likely bitrot and/or
> we'd end up with a lot of overlap. And if we do get anywhere near that number of
> testcases, they'll need to be organzied in some way.
>
> One idea would be create a directory per KVM selftest, and then put testcases for
> that test in said directory. We could even do something clever like fail the
> build if a test doesn't have a corresponding directory (and a default testcase?).
>
> E.g. tools/testing/selftests/kvm/testcases, with sub-directories following the
> tests themsleves and separated by architecture as appropriate.
>
> That us decent organization. If each test has a testcase directory, it's easy to
> get a list of testcases. At that point, the name of the testcase can be used to
> organize and describe, e.g. by tying the name to the (most interesting) parameters.
Sounds good. Extending your example for testcases given below this what
I am imagining ordering will be:
testcases/
├── aarch64
│ └── arch_timer
│ └── default
├── memslot_modification_stress_test
│ ├── 128gib.allvcpus.partitioned_memory_access
│ ├── default
│ └── x86_64
│ └── disable_slot_zap_quirk
├── riscv
│ └── arch_timer
│ └── default
├── s390x
├── steal_time
│ └── default
└── x86_64
├── amx_test
│ └── default
└── private_mem_conversions_test
├── 2vcpu.2memslots
└── default
1. Testcases will follow directory structure of the test source files.
2. "default" will have just path of the test relative to
tools/testing/selftests/kvm directory and no arguments provided in it.
3. Extra tests can be provided as separate files with meaningful names.
4. Some tests (memslot_modification_stress_test) have arch specific
options. Those testcases will be under arch specific directory of
that specific testcase directory.
5. Runner will be provided with a directory path and it will run all
files in that and their subdirectories recursively.
6. Runner will also filter out testcases based on filepath. For example
if running on ARM platform it will ignore all filepaths which have
x86_64, s390, and riscv in their path anywhere.
7. If user wants to save output of runner, then output dump will follow
the same directory structure.
>
> Hmm, and for collections of multiple testscases, what if we added a separate
> "testsuites" directory, with different syntax? E.g. one file per testuite, which
> is basically a list of testcases. Maybe with some magic to allow testsuites to
> "include" arch specific info?
>
> E.g. something like this
>
> $ tree test*
> testcases
> └── max_guest_memory_test
> └── 128gib.allvcpus.test
> testsuites
> └── mmu.suite
>
> 3 directories, 2 files
> $ cat testsuites/mmu.suite
> $ARCH/mmu.suite
> max_guest_memory_test/128gib.allvcpus.test
This can be one option. For now lets table testsuites discussion. We will
revisit if after Phase1 is completed.
>
> > This brings the question on how to handle the test execution when we are using
> > different command line parameters for individual tests which need some
> > specific environmnet?
> >
> > Some parameters will need a very specific module or sysfs setting which
> > might conflict with other tests. This is why I had "test_suite" in my
> > json, which can provide some module, sysfs, or other host settings. But
> > this also added cost of duplicating tests for each/few suites.
>
> IMO, this should be handled by user, or their CI environment, not by the upstream
> runner. Reconfiguring module params or sysfs knobs is inherently environment
> specific. E.g. not all KVM module params are writable post-load, and so changing
> a param might require stopping all VMs on the system, or even a full kernel reboot
> if KVM is built-in. There may also be knobs that require root access, that are
> dependent on hardware and/or kernel config, etc.
>
> I really don't want to build all that into the upstream test runner, certainly not
> in the first few phases. I 100% think the runner should be constructed in such a
> way that people/organizations/CI pipeines can build infrastructure on top, I just
> don't think it's a big need or a good fit for upstream.
For phase 2 discussion, you responded:
> Phase 2: Environment setup via runner
>
> Current patch, allows to write "setup" commands at test suite and test
> level in the json config file to setup the environment needed by a
> test to run. This might not be ideal as some settings are exposed
> differently on different platforms.
>
> For example,
> To enable TDP:
> - Intel needs npt=Y
> - AMD needs ept=Y
> - ARM always on.
>
> To enable APIC virtualization
> - Intel needs enable_apicv=Y
> - AMD needs avic=Y
>
> To enable/disable nested, they both have the same file name "nested"
> in their module params directory which should be changed.
>
> These kinds of settings become more verbose and unnecessary on other
> platforms. Instead, runners should have some programming constructs
> (API, command line options, default) to enable these options in a
> generic way. For example, enable/disable nested can be exposed as a
> command line --enable_nested, then based on the platform, runner can
> update corresponding module param or ignore.
>
> This will easily extend to providing sane configuration on the
> corresponding platforms without lots of hardcoding in JSON. These
> individual constructs will provide a generic view/option to run a KVM
> feature, and under the hood will do things differently based on the
> platform it is running on like arm, x86-intel, x86-amd, s390, etc.
My main input on this front is that the runner needs to configure module params
(and other environment settings) _on behalf of the user_, i.e. in response to a
command line option (to the runner), not in response to per-test configurations.
Should we still write code in runner for setting parameters which are
writable/modifiable or just leave it? Our current plan is to provide
some command line options to set those things but it is true that we
might not be able to set everything via runner.
Powered by blists - more mailing lists