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