tests: Add Minor to the ARM full switcheroo tests

Add the Minor CPU to the RealView and RealView64 full switcheroo
tests.
This commit is contained in:
Andreas Sandberg 2015-07-30 10:16:28 +01:00
parent ff8195235e
commit decd6b958e
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ import switcheroo
root = LinuxArmFSSwitcheroo( root = LinuxArmFSSwitcheroo(
mem_class=DDR3_1600_x64, mem_class=DDR3_1600_x64,
cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU) cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, MinorCPU, DerivO3CPU)
).create_root() ).create_root()
# Setup a custom test method that uses the switcheroo tester that # Setup a custom test method that uses the switcheroo tester that

View file

@ -42,7 +42,7 @@ import switcheroo
root = LinuxArmFSSwitcheroo( root = LinuxArmFSSwitcheroo(
machine_type='VExpress_EMM64', machine_type='VExpress_EMM64',
mem_class=DDR3_1600_x64, mem_class=DDR3_1600_x64,
cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU) cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, MinorCPU, DerivO3CPU)
).create_root() ).create_root()
# Setup a custom test method that uses the switcheroo tester that # Setup a custom test method that uses the switcheroo tester that