Add test case for `riscv expose_custom`.
[riscv-tests.git] / debug / targets / RISC-V / spike64-2-rtos.py
1 import targets
2 import testlib
3
4 import spike64 # pylint: disable=import-error
5
6 class spike64_2_rtos(targets.Target):
7 harts = [spike64.spike64_hart(), spike64.spike64_hart()]
8 openocd_config_path = "spike-rtos.cfg"
9 timeout_sec = 60
10 implements_custom_test = True
11
12 def create(self):
13 return testlib.Spike(self)