From 26f8f1e9770f9ec815bd82184935817a0f41729a Mon Sep 17 00:00:00 2001 From: Kuan-Wei Chiu Date: Sun, 5 May 2024 12:50:58 +0800 Subject: [PATCH] CI: Reinstate rv32fc test suite Fix the accidental removal of the rv32fc test suite from the architectural tests. It ensures comprehensive testing by adding it back. Fixes: 432caa97f349 ("CI: Prevent duplicate execution of architectural test suites") --- .ci/riscv-tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/riscv-tests.sh b/.ci/riscv-tests.sh index 4f6e5075d..9cdab63ff 100755 --- a/.ci/riscv-tests.sh +++ b/.ci/riscv-tests.sh @@ -11,3 +11,4 @@ export PATH=`pwd`/toolchain/riscv/bin:$PATH make clean make arch-test RISCV_DEVICE=IMAFCZicsrZifencei || exit 1 +make arch-test RISCV_DEVICE=FCZicsr || exit 1