From: Andreas Sandberg Date: Thu, 30 Jul 2015 09:16:28 +0000 (+0100) Subject: tests: Add Minor to the ARM full switcheroo tests X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=decd6b958ed417b62978bb3f49802ca1a0d7ca1a;p=gem5.git tests: Add Minor to the ARM full switcheroo tests Add the Minor CPU to the RealView and RealView64 full switcheroo tests. --- 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