Fix sim cmdline in bitmanip-random tests

This commit is contained in:
Luke Wren 2021-12-11 13:13:21 +00:00
parent 3fe0d92d41
commit 4066e941ef
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ define make-test-target
$(CROSS_PREFIX)objdump -d tmp/$1.elf >> tmp/$1.dis
$(CROSS_PREFIX)objdump -j .testdata -d tmp/$1.elf >> tmp/$1.dis
$(CROSS_PREFIX)objcopy -O binary tmp/$1.elf tmp/$1.bin
$(SIM_EXEC) tmp/$1.bin tmp/$1.vcd --dump 0x400000 0x410000 > tmp/$1.log
$(SIM_EXEC) --bin tmp/$1.bin --vcd tmp/$1.vcd --dump 0x400000 0x410000 > tmp/$1.log
../riscv-compliance/compare_testvec tmp/$1.log reference/$1.reference_output
endef