Test FPRs that aren't XLEN in size.
[riscv-tests.git] / debug / targets / RISC-V / spike64-2.py
index e1df6d235889330b016c645280ef23fe4222af17..a2082b41b7d9e68174267d6b3be79add87f9f1e6 100644 (file)
@@ -1,11 +1,12 @@
 import targets
 import testlib
 
-import spike64
+import spike64  # pylint: disable=import-error
 
 class spike64_2(targets.Target):
     harts = [spike64.spike64_hart(), spike64.spike64_hart()]
-    openocd_config_path = "spike.cfg"
+    openocd_config_path = "spike-2.cfg"
+    timeout_sec = 60
 
     def create(self):
-        return testlib.Spike(self)
+        return testlib.Spike(self, isa="RV64IMAFD")