[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke
From: |
Fabiano Rosas |
Subject: |
Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke |
Date: |
Wed, 18 Dec 2024 15:13:08 -0300 |
Peter Xu <peterx@redhat.com> writes:
> On Wed, Nov 13, 2024 at 04:46:27PM -0300, Fabiano Rosas wrote:
>> diff --git a/tests/qtest/migration-test-smoke.c
>> b/tests/qtest/migration-test-smoke.c
>> new file mode 100644
>> index 0000000000..ff2d72881f
>> --- /dev/null
>> +++ b/tests/qtest/migration-test-smoke.c
>> @@ -0,0 +1,39 @@
>> +/* SPDX-License-Identifier: GPL-2.0-or-later */
>> +
>> +#include "qemu/osdep.h"
>> +#include "libqtest.h"
>> +#include "migration/test-framework.h"
>> +#include "qemu/module.h"
>> +
>> +int main(int argc, char **argv)
>> +{
>> + MigrationTestEnv *env;
>> + int ret;
>> +
>> + g_test_init(&argc, &argv, NULL);
>> + env = migration_get_env();
>> + module_call_init(MODULE_INIT_QOM);
>> +
>> + if (env->has_kvm) {
>> + g_test_message(
>> + "Smoke tests already run as part of the full suite on KVM
>> hosts");
>> + goto out;
>> + }
>
> So the "smoke" here is almost "tcg".. and if i want to run a smoke test on
> a kvm-enabled host, it's noop.. which isn't easy to understand why.
>
> If to rethink our goal, we have two requirements:
>
> (1) We want to categorize migration tests, so some are quick, some are
> slow, some might be flacky. Maybe more, but it's about putting one
> test into only one bucket, and there're >1 buckets.
It's true that the smoke test should never have slow or flaky tests, but
we can't use this categorization for anything else. IOW, what you
describe here is not a goal. If a test is found to be slow we put it
under slow and it will only run with -m slow/thorough, that's it. We can
just ignore this.
>
> (2) We want to run only a small portion of tests on tcg, more tests on
> kvm.
Yes. Guests are fast with KVM and slow with TCG (generally) and the KVM
hosts are the ones where it's actually important to ensure all migration
features work OK. Non-KVM will only care about save/restore of
snapshots. Therefore we don't need to have all tests running with TCG,
only the smoke set.
And "smoke set" is arbitrary, not tied to speed, but of course no slow
tests please (which already happens because we don't pass -m slow to
migration-test-smoke).
>
> Ideally, we don't need two separate main test files, do we?
>
> I mean, we can do (1) with the existing migration-test.c, with the help of
> either gtest's "-m" or something we invent. The only unfortunate part is
> qtest only have quick/slow, afaiu the "thorough" mode is the same as
> "slow".. while we don't yet have real "perf" tests. It means we only have
> two buckets if we want to reuse gtest's "-m".
>
> Maybe it's enough? If not, we can implement >2 categories in whatever
> form, either custom argv/argc cmdline, or env variable.
>
> Then, if we always categorize one test (let me try to not reuse glib's
> terms to be clear) into any of: FAST|NORMAL|SLOW|..., then we have a single
It's either normal or slow. Because we only know a test is only after it
bothers us.
> migration-test that have different level of tests. We can invoke
> "migration-test --mode FAST" if kvm is not supported, and invoke the same
> "migration-test --mode SLOW" if kvm is supported.
This is messy due to how qtest/meson.build works. Having two tests is
the clean change. Otherwise we'll have to add "if migration-test" or
create artificial test names to be able to restrict the arguments that
are passed to the test per arch.
I also *think* we cannot have anything extra in argv because gtester
expects to be able to parse those.
>
> Would this be nicer? At least we can still run a pretty fast smoke / FAST
> test even on kvm. Basically, untangle accel v.s. "test category".
We could just remove the restriction from migration-test-smoke if that's
an issue.
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Peter Xu, 2024/12/18
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke,
Fabiano Rosas <=
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Peter Xu, 2024/12/18
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Fabiano Rosas, 2024/12/18
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Peter Xu, 2024/12/18
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Fabiano Rosas, 2024/12/19
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Peter Xu, 2024/12/19
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Fabiano Rosas, 2024/12/19
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Peter Xu, 2024/12/20
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Daniel P . Berrangé, 2024/12/20
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Peter Xu, 2024/12/20
- Re: [PATCH v2 19/22] tests/qtest/migration: Add migration-test-smoke, Fabiano Rosas, 2024/12/20