From ee68c2b30232a43c5494ce183022e9fe09a004d2 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Wed, 3 Sep 2014 07:42:41 -0400 Subject: [PATCH] tests: Use O3_ARM_v7a config for full-system ARM regressions This patch changes the CPU configuration used for the full-system ARM regressions to increase the test coverage. Note that it is only the core configuration, and not the caches etc. --- tests/configs/realview-o3-checker.py | 3 ++- tests/configs/realview-o3-dual.py | 3 ++- tests/configs/realview-o3.py | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/configs/realview-o3-checker.py b/tests/configs/realview-o3-checker.py index 6c930e759..aa9f53dd1 100644 --- a/tests/configs/realview-o3-checker.py +++ b/tests/configs/realview-o3-checker.py @@ -37,8 +37,9 @@ from m5.objects import * from arm_generic import * +from O3_ARM_v7a import O3_ARM_v7a_3 root = LinuxArmFSSystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_x64, - cpu_class=DerivO3CPU, + cpu_class=O3_ARM_v7a_3, checker=True).create_root() diff --git a/tests/configs/realview-o3-dual.py b/tests/configs/realview-o3-dual.py index b686acced..1df536f89 100644 --- a/tests/configs/realview-o3-dual.py +++ b/tests/configs/realview-o3-dual.py @@ -37,8 +37,9 @@ from m5.objects import * from arm_generic import * +from O3_ARM_v7a import O3_ARM_v7a_3 root = LinuxArmFSSystem(mem_mode='timing', mem_class=DDR3_1600_x64, - cpu_class=DerivO3CPU, + cpu_class=O3_ARM_v7a_3, num_cpus=2).create_root() diff --git a/tests/configs/realview-o3.py b/tests/configs/realview-o3.py index b8580a3a2..81b52d97c 100644 --- a/tests/configs/realview-o3.py +++ b/tests/configs/realview-o3.py @@ -37,7 +37,8 @@ from m5.objects import * from arm_generic import * +from O3_ARM_v7a import O3_ARM_v7a_3 root = LinuxArmFSSystemUniprocessor(mem_mode='timing', mem_class=DDR3_1600_x64, - cpu_class=DerivO3CPU).create_root() + cpu_class=O3_ARM_v7a_3).create_root()