Temporarily removed tests/imperas-riscv-tests from Makefile because of license issue

This commit is contained in:
David Harris 2022-02-27 15:12:10 +00:00
parent c35a071203
commit 5b15e552c6
3 changed files with 6 additions and 6 deletions

View File

@ -99,8 +99,8 @@ module postproc(
always_comb begin always_comb begin
ueb = ue-7'd15; ueb = ue-7'd15;
if (ue >= 7'd46) begin // overflow if (ue >= 7'd46) begin // overflow
uebiased = 7'd30; /* uebiased = 7'd30;
uff = 10'h3ff; uff = 10'h3ff; */
end else begin end else begin
uebiased = ue-7'd15; uebiased = ue-7'd15;
uff = uf; uff = uf;

View File

@ -20,7 +20,7 @@ module testbench;
// at start of test, load vectors and pulse reset // at start of test, load vectors and pulse reset
initial initial
begin begin
$readmemh("work/fmul_1.tv", testvectors); $readmemh("work/fmul_2.tv", testvectors);
vectornum = 0; errors = 0; vectornum = 0; errors = 0;
reset = 1; #22; reset = 0; reset = 1; #22; reset = 0;
end end

View File

@ -10,9 +10,9 @@ make clean:
make all: make all:
# *** Build old tests/imperas-riscv-tests for now; # *** Build old tests/imperas-riscv-tests for now;
# Delete this part when the privileged tests transition over to tests/wally-riscv-arch-test # Delete this part when the privileged tests transition over to tests/wally-riscv-arch-test
# Also delete bin/exe2memfile at that point # DH: 2/27/22 temporarily commented out imperas-riscv-tests because license expired
make -C ../../tests/imperas-riscv-tests --jobs #make -C ../../tests/imperas-riscv-tests --jobs
make -C ../../tests/imperas-riscv-tests XLEN=64 --jobs #make -C ../../tests/imperas-riscv-tests XLEN=64 --jobs
# Build riscv-arch-test 64 and 32-bit versions # Build riscv-arch-test 64 and 32-bit versions
make -C ../../addins/riscv-arch-test --jobs make -C ../../addins/riscv-arch-test --jobs