From ff945e38e5a81e9e77ae77688b78aaf84c808f49 Mon Sep 17 00:00:00 2001 From: abejgonzalez Date: Wed, 10 Jul 2019 23:27:19 -0700 Subject: [PATCH] run normal tests (not fast) for hwacha --- .circleci/run-tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/run-tests.sh b/.circleci/run-tests.sh index 0f6ef18f..99fd42dd 100755 --- a/.circleci/run-tests.sh +++ b/.circleci/run-tests.sh @@ -43,7 +43,8 @@ case $1 in hwacha) export RISCV=$LOCAL_ESP_DIR export LD_LIBRARY_PATH=$LOCAL_ESP_DIR/lib - make run-rv64uv-p-asm-tests-fst -C $LOCAL_SIM_DIR VERILATOR_INSTALL_DIR=$LOCAL_VERILATOR_DIR ${mapping[$1]} + export PATH=$RISCV/bin:$PATH + make run-rv64uv-p-asm-tests -C $LOCAL_SIM_DIR VERILATOR_INSTALL_DIR=$LOCAL_VERILATOR_DIR ${mapping[$1]} ;; *) echo "No set of tests for $1. Did you spell it right?"