Fix run-isa-tests.sh to fail on first failed test. Fix bad environment trap routing causing ecall ISA test to hang. Make breakpoint test instant-pass when triggers aren't implemented.

This commit is contained in:
Luke Wren 2022-05-28 17:22:28 +01:00
parent 66965ac073
commit 460fa0bb4a
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 0c35c3705973deb37a528e9a4df24c1c3192ce1c Subproject commit de4f8d03fc168a54c23f4254c3724e927daa1828

2
test/sim/riscv-tests/run-isa-tests.sh Normal file → Executable file
View File

@ -8,4 +8,4 @@ make XLEN=32 clean
# virtual memory test machine configuration. # virtual memory test machine configuration.
make -j$(nproc) XLEN=32 SKIP_V=1 rv32ui rv32uc rv32um rv32ua rv32mi make -j$(nproc) XLEN=32 SKIP_V=1 rv32ui rv32uc rv32um rv32ua rv32mi
for test in $(find -name "*-p-*.bin"); do echo $test; ../../../tb_cxxrtl/tb --bin $test --cycles 10000; done for test in $(find -name "*-p-*.bin"); do echo $test; ../../../tb_cxxrtl/tb --bin $test --cycles 10000 --vcd $test.vcd --cpuret; done