aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/RISC-V/spike64.py
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2017-08-28 12:17:37 -0700
committerTim Newsome <tim@sifive.com>2017-08-28 12:17:37 -0700
commit6650f4e3f7b11d581a8be07a2beb16f69530fb36 (patch)
tree68374fdf471eee508c1b3cc0968ad210bc6d4144 /debug/targets/RISC-V/spike64.py
parentb8646a70258674f7de88145dbd2a7ab8938b77ae (diff)
downloadriscv-tests-6650f4e3f7b11d581a8be07a2beb16f69530fb36.zip
riscv-tests-6650f4e3f7b11d581a8be07a2beb16f69530fb36.tar.gz
riscv-tests-6650f4e3f7b11d581a8be07a2beb16f69530fb36.tar.bz2
Increase remotetimeout for spike targets.
On overloaded systems, when executing compare-sections, otherwise gdb might hit a timeout and the compare-sections code doesn't deal with it. (You get an error message complaining that 130 is not a valid hex digit.)
Diffstat (limited to 'debug/targets/RISC-V/spike64.py')
-rw-r--r--debug/targets/RISC-V/spike64.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/debug/targets/RISC-V/spike64.py b/debug/targets/RISC-V/spike64.py
index 84586e3..6e3da89 100644
--- a/debug/targets/RISC-V/spike64.py
+++ b/debug/targets/RISC-V/spike64.py
@@ -12,6 +12,7 @@ class spike64_hart(targets.Hart):
class spike64(targets.Target):
harts = [spike64_hart()]
openocd_config_path = "spike.cfg"
+ timeout_sec = 30
def create(self):
return testlib.Spike(self)