[PATCH v2 07/11] tests/functional/aarch64/test_aspeed_ast2700: Rename AST2700 A1 test to reduce test runtime

Jamin Lin posted 11 patches 21 hours ago
Maintainers: "Cédric Le Goater" <clg@kaod.org>, Peter Maydell <peter.maydell@linaro.org>, Steven Lee <steven_lee@aspeedtech.com>, Troy Lee <leetroy@gmail.com>, Jamin Lin <jamin_lin@aspeedtech.com>, Andrew Jeffery <andrew@codeconstruct.com.au>, Joel Stanley <joel@jms.id.au>, Fabiano Rosas <farosas@suse.de>, Laurent Vivier <lvivier@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>
There is a newer version of this series
[PATCH v2 07/11] tests/functional/aarch64/test_aspeed_ast2700: Rename AST2700 A1 test to reduce test runtime
Posted by Jamin Lin 21 hours ago
Adding additional test cases to test_aspeed_ast2700.py makes the test
suite significantly larger and increases the overall test runtime.

To keep testing efficient and better scoped, rename the existing test
to test_aspeed_ast2700a1.py and dedicate it to AST2700 A1 specific tests.

A new test_aspeed_ast2700.py will be introduced later to always cover
the latest revision of the AST2700 SoC.

No functional change.

Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
---
 tests/functional/aarch64/meson.build                          | 4 ++--
 .../{test_aspeed_ast2700.py => test_aspeed_ast2700a1.py}      | 0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename tests/functional/aarch64/{test_aspeed_ast2700.py => test_aspeed_ast2700a1.py} (100%)

diff --git a/tests/functional/aarch64/meson.build b/tests/functional/aarch64/meson.build
index 5ad52f93e1..b5dd674bac 100644
--- a/tests/functional/aarch64/meson.build
+++ b/tests/functional/aarch64/meson.build
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0-or-later
 
 test_aarch64_timeouts = {
-  'aspeed_ast2700' : 600,
+  'aspeed_ast2700a1' : 600,
   'aspeed_ast2700fc' : 600,
   'device_passthrough' : 720,
   'imx8mp_evk' : 240,
@@ -23,7 +23,7 @@ tests_aarch64_system_quick = [
 ]
 
 tests_aarch64_system_thorough = [
-  'aspeed_ast2700',
+  'aspeed_ast2700a1',
   'aspeed_ast2700fc',
   'device_passthrough',
   'hotplug_pci',
diff --git a/tests/functional/aarch64/test_aspeed_ast2700.py b/tests/functional/aarch64/test_aspeed_ast2700a1.py
similarity index 100%
rename from tests/functional/aarch64/test_aspeed_ast2700.py
rename to tests/functional/aarch64/test_aspeed_ast2700a1.py
-- 
2.43.0
Re: [PATCH v2 07/11] tests/functional/aarch64/test_aspeed_ast2700: Rename AST2700 A1 test to reduce test runtime
Posted by Cédric Le Goater 19 hours ago
On 2/10/26 06:10, Jamin Lin wrote:
> Adding additional test cases to test_aspeed_ast2700.py makes the test
> suite significantly larger and increases the overall test runtime.
> 
> To keep testing efficient and better scoped, rename the existing test
> to test_aspeed_ast2700a1.py and dedicate it to AST2700 A1 specific tests.
> 
> A new test_aspeed_ast2700.py will be introduced later to always cover
> the latest revision of the AST2700 SoC.
> 
> No functional change.
> 
> Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
> ---
>   tests/functional/aarch64/meson.build                          | 4 ++--
>   .../{test_aspeed_ast2700.py => test_aspeed_ast2700a1.py}      | 0
>   2 files changed, 2 insertions(+), 2 deletions(-)
>   rename tests/functional/aarch64/{test_aspeed_ast2700.py => test_aspeed_ast2700a1.py} (100%)
> 
> diff --git a/tests/functional/aarch64/meson.build b/tests/functional/aarch64/meson.build
> index 5ad52f93e1..b5dd674bac 100644
> --- a/tests/functional/aarch64/meson.build
> +++ b/tests/functional/aarch64/meson.build
> @@ -1,7 +1,7 @@
>   # SPDX-License-Identifier: GPL-2.0-or-later
>   
>   test_aarch64_timeouts = {
> -  'aspeed_ast2700' : 600,
> +  'aspeed_ast2700a1' : 600,
>     'aspeed_ast2700fc' : 600,
>     'device_passthrough' : 720,
>     'imx8mp_evk' : 240,
> @@ -23,7 +23,7 @@ tests_aarch64_system_quick = [
>   ]
>   
>   tests_aarch64_system_thorough = [
> -  'aspeed_ast2700',
> +  'aspeed_ast2700a1',
>     'aspeed_ast2700fc',
>     'device_passthrough',
>     'hotplug_pci',
> diff --git a/tests/functional/aarch64/test_aspeed_ast2700.py b/tests/functional/aarch64/test_aspeed_ast2700a1.py
> similarity index 100%
> rename from tests/functional/aarch64/test_aspeed_ast2700.py
> rename to tests/functional/aarch64/test_aspeed_ast2700a1.py

Reviewed-by: Cédric Le Goater <clg@redhat.com>

Thanks,

C.