-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganize how tb infrstructure selects toolchains
- Loading branch information
Showing
24 changed files
with
330 additions
and
186 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
**/_build | ||
**/*.out | ||
**/transcript | ||
**/htmlcov | ||
**/*.log | ||
**/*.pb | ||
**/.Xil | ||
|
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
def pytest_addoption(parser): | ||
parser.addoption( | ||
"--sim-tool", | ||
choices=["questa", "xilinx", "stub", "skip", "auto"], | ||
default="auto", | ||
help=""" | ||
Select the simulator to use. | ||
stub: run the testcase using a no-op simulator stub | ||
skip: skip all the simulation tests | ||
auto: choose the best simulator based on what is installed | ||
""" | ||
) | ||
|
||
parser.addoption( | ||
"--synth-tool", | ||
choices=["vivado", "skip", "auto"], | ||
default="auto", | ||
help=""" | ||
Select the synthesis tool to use. | ||
skip: skip all the simulation tests | ||
auto: choose the best tool based on what is installed | ||
""" | ||
) |
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
Oops, something went wrong.