Merge pull request #2114 from 10x-Engineers/arch-test-update

Updated riscv-arch-test suites
This commit is contained in:
André Sintzoff 2023-08-08 09:42:05 +02:00 committed by GitHub
commit 961c4f0948
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -67,7 +67,7 @@ export NUM_JOBS=24
if [ -z "$CVA6_REPO" ]; then
CVA6_REPO="https://github.com/openhwgroup/cva6.git"
CVA6_BRANCH="master"
CVA6_HASH="4f06aa620f75bcae369f05d0652283d45ef76a24"
CVA6_HASH="853fb4bee5ca6e36e39dc3c272a97f49d95c3c1d"
CVA6_PATCH=
fi
echo $CVA6_REPO

View file

@ -17,7 +17,7 @@ fi
if ! [ -n "$ARCH_TEST_REPO" ]; then
ARCH_TEST_REPO=https://github.com/riscv-non-isa/riscv-arch-test
ARCH_TEST_BRANCH=main
ARCH_TEST_HASH=ad04e119a5d846a1c11159786ad3382cf5ad3649
ARCH_TEST_HASH="46cf99d0e020887e398508fc776928a1adad7c23"
fi
echo "Repo: " $ARCH_TEST_REPO
echo "Branch:" $ARCH_TEST_BRANCH
@ -29,7 +29,7 @@ if ! [ -d cva6/tests/riscv-arch-test ]; then
git clone $ARCH_TEST_REPO -b $ARCH_TEST_BRANCH cva6/tests/riscv-arch-test
cd cva6/tests/riscv-arch-test; git checkout $ARCH_TEST_HASH;
# Copy Spike definitions to the corresponding riscv-target subdirectory.
cp -rpa $SPIKE_SRC_DIR/arch_test_target/spike riscv-target
cp -rpa $SPIKE_SRC_DIR/arch_test_target riscv-target
cd -
fi