tests: Use O3_ARM_v7a config for full-system ARM regressions
authorAndreas Hansson <andreas.hansson@arm.com>
Wed, 3 Sep 2014 11:42:41 +0000 (07:42 -0400)
committerAndreas Hansson <andreas.hansson@arm.com>
Wed, 3 Sep 2014 11:42:41 +0000 (07:42 -0400)
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
tests/configs/realview-o3-dual.py
tests/configs/realview-o3.py

index 6c930e759442c9371fe1600cf5160bf8394152c8..aa9f53dd142b0e1d91bb05e598acdad6b0ece173 100644 (file)
@@ -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()
index b686acced5dd77b2627d5d2fd08668784154c190..1df536f891f3d97991682ea33e31d1488464edd3 100644 (file)
@@ -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()
index b8580a3a23b47f538be205dd7c3325f03a2cc6ae..81b52d97cd3a791ab8e4e80de85cb08e64e0a771 100644 (file)
@@ -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()