aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-04-10 12:03:09 +0200
committerClifford Wolf <clifford@clifford.at>2016-04-10 12:03:09 +0200
commitbc85a4c1104077ac5fae251cd934185dfefeef3f (patch)
tree2d9df84536b79379798ebb1d01822033dc8f4a6d /scripts
parent0d91dfa59e215229d0893daa26be9add4d258e45 (diff)
downloadpicorv32-bc85a4c1104077ac5fae251cd934185dfefeef3f.tar.gz
picorv32-bc85a4c1104077ac5fae251cd934185dfefeef3f.zip
Updated riscv-gnu-toolchain (c.addi16sp bugfix)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/torture/Makefile1
-rw-r--r--scripts/torture/testbench.v4
2 files changed, 2 insertions, 3 deletions
diff --git a/scripts/torture/Makefile b/scripts/torture/Makefile
index 8856a7a..e9bea89 100644
--- a/scripts/torture/Makefile
+++ b/scripts/torture/Makefile
@@ -36,7 +36,6 @@ tests/generated.ok: riscv-torture/build.ok
mkdir -p tests
rm -f riscv-torture/output/test_*
cd riscv-torture && ./sbt 'generator/run -n 1000'
- sed -i -e '/addi x2, x2, 0/ s/addi/xori/;' riscv-torture/output/test_*.S
touch tests/generated.ok
define test_template
diff --git a/scripts/torture/testbench.v b/scripts/torture/testbench.v
index d6b974f..41f3495 100644
--- a/scripts/torture/testbench.v
+++ b/scripts/torture/testbench.v
@@ -79,9 +79,9 @@ module testbench (
end
end
if (errcount)
- $display("FAILED: Got %1d errors for %1s/%1s!", errcount, hex_filename, ref_filename);
+ $display("FAILED: Got %1d errors for %1s => %1s!", errcount, hex_filename, ref_filename);
else
- $display("PASSED %1s/%1s.", hex_filename, ref_filename);
+ $display("PASSED %1s => %1s.", hex_filename, ref_filename);
$finish;
end
end