aboutsummaryrefslogtreecommitdiff
path: root/debug/programs
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2018-10-05 12:28:32 -0700
committerTim Newsome <tim@sifive.com>2018-10-05 12:28:32 -0700
commitacc87e14d9a6e4e6c3f019e79cb5c047162228c1 (patch)
tree9e3b5594e6f7b09422c39222842eb7029542be51 /debug/programs
parent6ac2c6350757a07b4469f37eca61bf44854f41c6 (diff)
downloadriscv-tests-acc87e14d9a6e4e6c3f019e79cb5c047162228c1.zip
riscv-tests-acc87e14d9a6e4e6c3f019e79cb5c047162228c1.tar.gz
riscv-tests-acc87e14d9a6e4e6c3f019e79cb5c047162228c1.tar.bz2
Make HwWatchpoint test fail on incorrect result.hw_watchpoint
Also tiny cleanups, making pylint happy.
Diffstat (limited to 'debug/programs')
-rw-r--r--debug/programs/counting_loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/programs/counting_loop.c b/debug/programs/counting_loop.c
index 2116e52..7c7d600 100644
--- a/debug/programs/counting_loop.c
+++ b/debug/programs/counting_loop.c
@@ -5,7 +5,7 @@
int main()
{
- int sum = 0;
+ int sum = 0;
int counter = 0;
while (counter < 10) {