summaryrefslogtreecommitdiff
path: root/test/riscv
diff options
context:
space:
mode:
authorPrashanth Mundkur2018-05-22 08:26:33 -0700
committerPrashanth Mundkur2018-05-22 08:26:33 -0700
commitf87597747784a838f5373132e78c3b3c0c13f320 (patch)
treec30d9959316a992b74e842f83f4c51bdade2fba5 /test/riscv
parent0096e16fae43a673cb1c9d7ad581874a4020c73f (diff)
Re-enable the RISC-V lem build, and switch the test-suite to use the platform build.
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 70ce4998..006ed425 100755
--- a/test/riscv/run_tests.sh
+++ b/test/riscv/run_tests.sh
@@ -51,7 +51,7 @@ cd $SAILDIR/riscv
printf "Building RISCV specification...\n"
-if make -C $SAILDIR/riscv riscv ;
+if make -C $SAILDIR/riscv platform ;
then
green "Building RISCV specification" "ok"
else
@@ -59,7 +59,7 @@ else
fi
for test in $DIR/tests/*.elf; do
- if $SAILDIR/riscv/riscv "$test" >"${test/.elf/.out}" 2>&1 && grep -q SUCCESS "${test/.elf/.out}"
+ if $SAILDIR/riscv/platform "$test" >"${test/.elf/.out}" 2>&1 && grep -q SUCCESS "${test/.elf/.out}"
then
green "$(basename $test)" "ok"
else