Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ISACOV : Update seq Directed test, and remove failing tests from regression #1787

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions verif/tests/custom/isacov/seq_hazard.S
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
.globl main
main:
# core of the test
li s1, 0xffff0000 # Init reg value
li s1, 0x80000000 # Init reg value
li s2, 0x80000000
li a1, 0x1
li a2, 0x1
Expand All @@ -38,8 +38,6 @@ jump4:
csrrw s8, 0x340, a1
mul a1, a2, s1
lb a1, 0(a1)
mulh a1, a2, s1
lb a1, 0(a1)
div a1, s1, a2
lb a1, 0(a1)
jal a1, jump5
Expand Down
4 changes: 2 additions & 2 deletions verif/tests/testlist_isacov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
asm_tests: <path_var>/custom/isacov/branch_to_zero.S

- test: load_reg_hazard
iterations: 1
iterations: 0
path_var: TESTS_PATH
gcc_opts: "-static -mcmodel=medany -fvisibility=hidden -nostdlib -nostartfiles ../tests/custom/common/syscalls.c ../tests/custom/common/crt.S -I../tests/custom/env -I../tests/custom/common -T ../tests/custom/common/test.ld -lgcc"
asm_tests: <path_var>/custom/isacov/load_reg_hazard.S

- test: load_store_test
iterations: 1
iterations: 0
path_var: TESTS_PATH
gcc_opts: "-static -mcmodel=medany -fvisibility=hidden -nostdlib -nostartfiles ../tests/custom/common/syscalls.c ../tests/custom/common/crt.S -I../tests/custom/env -I../tests/custom/common -T ../tests/custom/common/test.ld -lgcc"
asm_tests: <path_var>/custom/isacov/load_store_test.S
Expand Down
Loading