diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-07-30 10:16:28 +0100 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-07-30 10:16:28 +0100 |
commit | decd6b958ed417b62978bb3f49802ca1a0d7ca1a (patch) | |
tree | edf3dcb40cee201438995ece3949225a17b3bc11 /tests | |
parent | ff8195235e647fbe5e303a1da391544fc436ca47 (diff) | |
download | gem5-decd6b958ed417b62978bb3f49802ca1a0d7ca1a.tar.xz |
tests: Add Minor to the ARM full switcheroo tests
Add the Minor CPU to the RealView and RealView64 full switcheroo
tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/configs/realview-switcheroo-full.py | 2 | ||||
-rw-r--r-- | tests/configs/realview64-switcheroo-full.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/configs/realview-switcheroo-full.py b/tests/configs/realview-switcheroo-full.py index 3467eb4c9..3b28691d4 100644 --- a/tests/configs/realview-switcheroo-full.py +++ b/tests/configs/realview-switcheroo-full.py @@ -41,7 +41,7 @@ import switcheroo root = LinuxArmFSSwitcheroo( mem_class=DDR3_1600_x64, - cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU) + cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, MinorCPU, DerivO3CPU) ).create_root() # Setup a custom test method that uses the switcheroo tester that diff --git a/tests/configs/realview64-switcheroo-full.py b/tests/configs/realview64-switcheroo-full.py index fc4027927..b9f28a4a9 100644 --- a/tests/configs/realview64-switcheroo-full.py +++ b/tests/configs/realview64-switcheroo-full.py @@ -42,7 +42,7 @@ import switcheroo root = LinuxArmFSSwitcheroo( machine_type='VExpress_EMM64', mem_class=DDR3_1600_x64, - cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU) + cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, MinorCPU, DerivO3CPU) ).create_root() # Setup a custom test method that uses the switcheroo tester that |