[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 21/22] tests/qtest: Add support for check-qtest-<subsystem>
From: |
Fabiano Rosas |
Subject: |
Re: [PATCH 21/22] tests/qtest: Add support for check-qtest-<subsystem> |
Date: |
Wed, 06 Nov 2024 09:40:21 -0300 |
Daniel P. Berrangé <berrange@redhat.com> writes:
> On Tue, Nov 05, 2024 at 03:08:36PM -0300, Fabiano Rosas wrote:
>> Allow qtests to be ran by subsystem. Some subsystems, such as
>> migration, have a large number of tests and we could benefit from
>> being able to access them from make check without having to run the
>> full set of qtests.
>>
>> This adds the following make check targets:
>>
>> make check-qtest-migration
>>
>> Signed-off-by: Fabiano Rosas <farosas@suse.de>
>> ---
>> I did not include check-qtest-<arch>-<subsys> because meson generates a
>> long line that affects readability.
>
> Can you give an example of that ? I'm wondering how much of a
> problem it actually is ? Personally when I'm running a subset
> of tests, I almost always want to limit to just one arch target.
>
Ok, you have a different use case, mine is just "run migration tests for
all archs, without bringing all the rest of qtest along". When I want to
limit to one arch, I use the 'QTEST_QEMU_BINARY=qemu-system-<arch>
migration-test' syntax.
The issue is that meson always shows all suites in which a test is
present (quite uselessly IMO):
[1-8/8] 🌑 qemu:qtest+qtest-s390x+qtest-migration+qtest-s390x-migration /
qtest-s390x/migration-test 0/480
1/8 qemu:qtest+qtest-x86_64+qtest-migration+qtest-x86_64-migration /
qtest-x86_64/migration-test-smoke SKIP 0.02s
vs:
1/8 qemu:qtest+qtest-x86_64+qtest-migration / qtest-x86_64/migration-test-smoke
SKIP 0.02s
2/8 qemu:qtest+qtest-ppc64+qtest-migration / qtest-ppc64/migration-test
SKIP 0.02s
- Re: [PATCH 12/22] tests/qtest/migration: Split TLS tests from migration-test.c, (continued)
- [PATCH 14/22] tests/qtest/migration: Split postcopy tests, Fabiano Rosas, 2024/11/05
- [PATCH 13/22] tests/qtest/migration: Split compression tests from migration-test.c, Fabiano Rosas, 2024/11/05
- [PATCH 15/22] tests/qtest/migration: Split file tests, Fabiano Rosas, 2024/11/05
- [PATCH 16/22] tests/qtest/migration: Split precopy tests, Fabiano Rosas, 2024/11/05
- [PATCH 17/22] tests/qtest/migration: Split CPR tests, Fabiano Rosas, 2024/11/05
- [PATCH 18/22] tests/qtest/migration: Split validation tests + misc, Fabiano Rosas, 2024/11/05
- [PATCH 19/22] tests/qtest/migration: Add migration-test-smoke, Fabiano Rosas, 2024/11/05
- [PATCH 21/22] tests/qtest: Add support for check-qtest-<subsystem>, Fabiano Rosas, 2024/11/05
- [PATCH 20/22] tests/qtest/migration: Pick smoke tests, Fabiano Rosas, 2024/11/05
- [PATCH 22/22] docs: Add migration tests documentation, Fabiano Rosas, 2024/11/05