summaryrefslogtreecommitdiff
path: root/test/riscv
diff options
context:
space:
mode:
authorAlasdair Armstrong2018-02-07 19:01:32 +0000
committerAlasdair Armstrong2018-02-07 19:01:32 +0000
commit8b13b71a80b89e8494cc550c65d36e2eca7c6c79 (patch)
treedb5e1da3b448ed2b2c7bf1032ed5e199e2ba7da2 /test/riscv
parent66eb6adffbb392cf78a78ff41eefd0fa52e7983a (diff)
Remove warnings during re-writing
Turn of warnings so we don't get warnings for generated code, this fixes the false-positive warnings in the riscv test suite. Also use basename in test/riscv/run_tests.sh to not print long paths
Diffstat (limited to 'test/riscv')
-rwxr-xr-xtest/riscv/run_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/riscv/run_tests.sh b/test/riscv/run_tests.sh
index dd19bd72..ab121d61 100755
--- a/test/riscv/run_tests.sh
+++ b/test/riscv/run_tests.sh
@@ -61,9 +61,9 @@ fi
for test in $DIR/tests/*.elf; do
if $SAILDIR/riscv/riscv "$test" >"${test/.elf/.out}" 2>&1 && grep -q SUCCESS "${test/.elf/.out}"
then
- green "$test" "ok"
+ green `basename $test` "ok"
else
- red "$test" "fail"
+ red `basename $test` "fail"
fi
done