aboutsummaryrefslogtreecommitdiff
path: root/debug/targets
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2018-02-19 13:31:40 -0800
committerTim Newsome <tim@sifive.com>2018-02-28 12:37:40 -0800
commit400ad944db31fe736c166967567cc8a63d300e6c (patch)
treec21a01a4c99b8f11f5f7e384496828d85e14e16c /debug/targets
parentba39c5fc2885eb1400d6f9e13ae6c7588c1c1241 (diff)
downloadriscv-tests-no_progbuf.zip
riscv-tests-no_progbuf.tar.gz
riscv-tests-no_progbuf.tar.bz2
Test debugging with/without a program bufferno_progbuf
Diffstat (limited to 'debug/targets')
-rw-r--r--debug/targets/RISC-V/spike32-2-rtos.py2
-rw-r--r--debug/targets/RISC-V/spike32-2.py2
-rw-r--r--debug/targets/RISC-V/spike64.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/debug/targets/RISC-V/spike32-2-rtos.py b/debug/targets/RISC-V/spike32-2-rtos.py
index a7b9a1c..79105d5 100644
--- a/debug/targets/RISC-V/spike32-2-rtos.py
+++ b/debug/targets/RISC-V/spike32-2-rtos.py
@@ -9,4 +9,4 @@ class spike32_2(targets.Target):
timeout_sec = 30
def create(self):
- return testlib.Spike(self)
+ return testlib.Spike(self, progbufsize=0)
diff --git a/debug/targets/RISC-V/spike32-2.py b/debug/targets/RISC-V/spike32-2.py
index f57f816..89d3c2a 100644
--- a/debug/targets/RISC-V/spike32-2.py
+++ b/debug/targets/RISC-V/spike32-2.py
@@ -9,4 +9,4 @@ class spike32_2(targets.Target):
timeout_sec = 30
def create(self):
- return testlib.Spike(self, isa="RV32IMAFC")
+ return testlib.Spike(self, isa="RV32IMAFC", progbufsize=0)
diff --git a/debug/targets/RISC-V/spike64.py b/debug/targets/RISC-V/spike64.py
index 2aa1dd0..d5802b5 100644
--- a/debug/targets/RISC-V/spike64.py
+++ b/debug/targets/RISC-V/spike64.py
@@ -16,4 +16,4 @@ class spike64(targets.Target):
def create(self):
# 32-bit FPRs only
- return testlib.Spike(self, isa="RV64IMAFC")
+ return testlib.Spike(self, isa="RV64IMAFC", progbufsize=0)