-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change: Minor lint updates about variable naming
Fix: start was call at the right place, before the testcases execution but before a testcase execution. The returned value was so only relveant for the first execution Fix: Launching the flow in a folder without testcases didn't return an error Fix: Better manage svut_h.sv ccompare/copy now the svutRun.py in not placed along its symlink
- Loading branch information
Showing
5 changed files
with
69 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
test_run_ffd_example_icarus() { #@test | ||
|
||
run bash -c "cd ../example && svutRun -test ffd_testbench.sv -sim icarus" | ||
run bash -c "cd ../example && ../svutRun -test ffd_testbench.sv -sim icarus" | ||
[ "$status" -eq 0 ] | ||
} | ||
|
||
test_run_ffd_example_verilator_failure() { #@test | ||
|
||
run bash -c "cd ../example && svutRun -test ffd_testbench.sv -sim verilator" | ||
run bash -c "cd ../example && ../svutRun -test ffd_testbench.sv -sim verilator" | ||
[ "$status" -eq 1 ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters