aboutsummaryrefslogtreecommitdiff
path: root/tests/test_backend_registry.py
diff options
context:
space:
mode:
authorBenedetta Delfino <benni.delfino@arm.com>2024-02-28 17:38:42 +0000
committerBenedetta Delfino <benedetta.delfino@arm.com>2024-03-11 17:31:30 +0000
commit2ba39623502551ec073fbc67b59e0458af084c7e (patch)
tree7fd8093fef683d846664d0e139eb5edb6853d8cc /tests/test_backend_registry.py
parent2e9dc4cf750a7ae18f87abd174aa7b5be40a7d37 (diff)
downloadmlia-2ba39623502551ec073fbc67b59e0458af084c7e.tar.gz
feat: Add support for Arm Corstone-300 and Corstone-310 on AArch64
- Add support for Corstone-300 download on AArch64 - Add support for Corstone-310 download on AArch64 - Add support for Corstone-310 download on x86 - Add e2e tests and unit tests - Edited README.md to reflect updates Resolves: MLIA-1017 Signed-off-by: Benedetta Delfino <benedetta.delfino@arm.com> Change-Id: I8d54a721f91d67123f65c076313cef12b7df92bd
Diffstat (limited to 'tests/test_backend_registry.py')
-rw-r--r--tests/test_backend_registry.py18
1 files changed, 13 insertions, 5 deletions
diff --git a/tests/test_backend_registry.py b/tests/test_backend_registry.py
index cc05632..1f729b6 100644
--- a/tests/test_backend_registry.py
+++ b/tests/test_backend_registry.py
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates.
+# SPDX-FileCopyrightText: Copyright 2022-2024, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""Tests for the backend registry module."""
from __future__ import annotations
@@ -26,14 +26,22 @@ from mlia.core.common import AdviceCategory
),
(
"corstone-300",
- [AdviceCategory.PERFORMANCE, AdviceCategory.OPTIMIZATION],
- [System.LINUX_AMD64],
+ [
+ AdviceCategory.COMPATIBILITY,
+ AdviceCategory.PERFORMANCE,
+ AdviceCategory.OPTIMIZATION,
+ ],
+ [System.LINUX_AMD64, System.LINUX_AARCH64],
BackendType.CUSTOM,
),
(
"corstone-310",
- [AdviceCategory.PERFORMANCE, AdviceCategory.OPTIMIZATION],
- [System.LINUX_AMD64],
+ [
+ AdviceCategory.COMPATIBILITY,
+ AdviceCategory.PERFORMANCE,
+ AdviceCategory.OPTIMIZATION,
+ ],
+ [System.LINUX_AMD64, System.LINUX_AARCH64],
BackendType.CUSTOM,
),
(