[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 16/19] tests/qtest/npcm7xx_pwm-test: Only do full testing in slow
From: |
Thomas Huth |
Subject: |
[PULL 16/19] tests/qtest/npcm7xx_pwm-test: Only do full testing in slow mode |
Date: |
Wed, 20 Dec 2023 10:41:02 +0100 |
The npcm7xx_pwm-test can take quite a while when running with
--enable-debug on a loaded system. The tests here are quite
repetitive - by default it should be fine if we only execute
some of them and only execute all when running in slow testing mode.
Message-ID: <20231215143524.49241-1-thuth@redhat.com>
Reviewed-by: "Daniel P. Berrangé" <berrange@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
tests/qtest/npcm7xx_pwm-test.c | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/tests/qtest/npcm7xx_pwm-test.c b/tests/qtest/npcm7xx_pwm-test.c
index ea4ca1d106..b53a43c417 100644
--- a/tests/qtest/npcm7xx_pwm-test.c
+++ b/tests/qtest/npcm7xx_pwm-test.c
@@ -606,6 +606,7 @@ static void test_toggle(gconstpointer test_data)
uint32_t ppr, csr, pcr, cnr, cmr;
int i, j, k, l;
uint64_t expected_freq, expected_duty;
+ int cnr_step = g_test_quick() ? 2 : 1;
mft_init(qts, td);
@@ -618,7 +619,7 @@ static void test_toggle(gconstpointer test_data)
csr = csr_list[j];
pwm_write_csr(qts, td, csr);
- for (k = 0; k < ARRAY_SIZE(cnr_list); ++k) {
+ for (k = 0; k < ARRAY_SIZE(cnr_list); k += cnr_step) {
cnr = cnr_list[k];
pwm_write_cnr(qts, td, cnr);
@@ -678,6 +679,7 @@ static void pwm_add_test(const char *name, const TestData*
td,
int main(int argc, char **argv)
{
TestData test_data_list[ARRAY_SIZE(pwm_module_list) *
ARRAY_SIZE(pwm_list)];
+ int pwm_module_list_cnt = 1, pwm_list_cnt = 1;
char *v_env = getenv("V");
@@ -687,8 +689,13 @@ int main(int argc, char **argv)
g_test_init(&argc, &argv, NULL);
- for (int i = 0; i < ARRAY_SIZE(pwm_module_list); ++i) {
- for (int j = 0; j < ARRAY_SIZE(pwm_list); ++j) {
+ if (!g_test_quick()) {
+ pwm_module_list_cnt = ARRAY_SIZE(pwm_module_list);
+ pwm_list_cnt = ARRAY_SIZE(pwm_list);
+ }
+
+ for (int i = 0; i < pwm_module_list_cnt; ++i) {
+ for (int j = 0; j < pwm_list_cnt; ++j) {
TestData *td = &test_data_list[i * ARRAY_SIZE(pwm_list) + j];
td->module = &pwm_module_list[i];
--
2.43.0
- [PULL 05/19] hw/ppc/spapr_hcall: Remove unused 'exec/exec-all.h' included header, (continued)
- [PULL 05/19] hw/ppc/spapr_hcall: Remove unused 'exec/exec-all.h' included header, Thomas Huth, 2023/12/20
- [PULL 06/19] hw/misc/mips_itu: Remove unnecessary 'exec/exec-all.h' header, Thomas Huth, 2023/12/20
- [PULL 09/19] docs/system/arm: Fix for rename of type "xlnx.bbram-ctrl", Thomas Huth, 2023/12/20
- [PULL 10/19] hw: Replace anti-social QOM type names (again), Thomas Huth, 2023/12/20
- [PULL 11/19] memory: Remove "qemu:" prefix from the "qemu:ram-discard-manager" type name, Thomas Huth, 2023/12/20
- [PULL 08/19] target: Restrict 'sysemu/reset.h' to system emulation, Thomas Huth, 2023/12/20
- [PULL 12/19] tests/unit/test-io-task: Rename "qemu:dummy" to avoid colon in the name, Thomas Huth, 2023/12/20
- [PULL 14/19] tests/qtest/migration-test: Fix analyze-migration.py for s390x, Thomas Huth, 2023/12/20
- [PULL 15/19] qemu-options: Clarify handling of commas in options parameters, Thomas Huth, 2023/12/20
- [PULL 13/19] qom/object: Limit type names to alphanumerical and some few special characters, Thomas Huth, 2023/12/20
- [PULL 16/19] tests/qtest/npcm7xx_pwm-test: Only do full testing in slow mode,
Thomas Huth <=
- [PULL 18/19] tests/unit/test-qmp-event: Simplify event emission check, Thomas Huth, 2023/12/20
- [PULL 17/19] tests/unit/test-qmp-event: Drop superfluous mutex, Thomas Huth, 2023/12/20
- [PULL 19/19] tests/unit/test-qmp-event: Replace fixture by global variables, Thomas Huth, 2023/12/20
- Re: [PULL 00/19] First batch of misc patches for QEMU 9.0, Stefan Hajnoczi, 2023/12/20