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.
This commit is contained in:
parent
5008a20aa4
commit
ee68c2b302
3 changed files with 6 additions and 3 deletions
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue