From 9f9b7087ed88ee7fe1bb81243b210f3f99444a8f Mon Sep 17 00:00:00 2001 From: abejgonzalez Date: Wed, 10 Jul 2019 15:50:22 -0700 Subject: [PATCH] fix key/value store access --- .circleci/do-rtl-build.sh | 2 +- .circleci/run-tests.sh | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/do-rtl-build.sh b/.circleci/do-rtl-build.sh index c99c490e..40975108 100755 --- a/.circleci/do-rtl-build.sh +++ b/.circleci/do-rtl-build.sh @@ -31,7 +31,7 @@ copy $LOCAL_VERILATOR_DIR/ $SERVER:$REMOTE_VERILATOR_DIR # enter the verisim directory and build the specific config on remote server run "make -C $REMOTE_SIM_DIR clean" -run "export RISCV=\"$REMOTE_RISCV_DIR\"; export VERILATOR_ROOT=$REMOTE_VERILATOR_DIR/install/share/verilator; make -C $REMOTE_SIM_DIR VERILATOR_INSTALL_DIR=$REMOTE_VERILATOR_DIR JAVA_ARGS=\"-Xmx8G -Xss8M\" $mapping[$1]" +run "export RISCV=\"$REMOTE_RISCV_DIR\"; export VERILATOR_ROOT=$REMOTE_VERILATOR_DIR/install/share/verilator; make -C $REMOTE_SIM_DIR VERILATOR_INSTALL_DIR=$REMOTE_VERILATOR_DIR JAVA_ARGS=\"-Xmx8G -Xss8M\" ${mapping[$1]}" run "rm -rf $REMOTE_CHIPYARD_DIR/project" # copy back the final build diff --git a/.circleci/run-tests.sh b/.circleci/run-tests.sh index bd49f17a..e0587e03 100755 --- a/.circleci/run-tests.sh +++ b/.circleci/run-tests.sh @@ -26,22 +26,22 @@ run_both () { case $1 in example) - run_bmark $mapping[$1] + run_bmark ${mapping[$1]} ;; boomexample) - run_bmark $mapping[$1] + run_bmark ${mapping[$1]} ;; boomrocketexample) - run_bmark $mapping[$1] + run_bmark ${mapping[$1]} ;; boom) - run_bmark $mapping[$1] + run_bmark ${mapping[$1]} ;; rocketchip) - run_bmark $mapping[$1] + run_bmark ${mapping[$1]} ;; hwacha) - make run-rv64uv-p-asm-tests-fst -C $LOCAL_SIM_DIR VERILATOR_INSTALL_DIR=$LOCAL_VERILATOR_DIR $mapping[$1] + make run-rv64uv-p-asm-tests-fst -C $LOCAL_SIM_DIR VERILATOR_INSTALL_DIR=$LOCAL_VERILATOR_DIR ${mapping[$1]} ;; *) echo "No set of tests for $1. Did you spell it right?"