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 <[email protected]> --- 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
