-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move HITL test control logic from Tcl to Haskell
This enables more fine-grained control of HITL test control execution from Haskell code. It: * Moves test control logic from `bittide-shake/data/tcl/HardwareTest.tcl` to `bittide-shake/src/Clash/Shake/Vivado.hs`. Instead of letting Vivado execute Tcl files, it is now controlled by attaching to stdin and stdout of Vivado in Tcl mode through the new vivado-hs package. * Test definitions are no longer stored in JSON files, but using the new HitlTest type.
- Loading branch information
1 parent
06b3b08
commit 0c1035d
Showing
39 changed files
with
1,908 additions
and
2,111 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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
[ | ||
{"top": "fullMeshHwCcTest", "stage": "test", "targets": "All"}, | ||
{"top": "fullMeshSwCcTest", "stage": "test", "targets": "All"}, | ||
{"top": "linkConfigurationTest", "stage": "test", "targets": "All"}, | ||
{"top": "safeDffSynchronizer", "stage": "hdl"}, | ||
{"top": "transceiversUpTest", "stage": "test", "targets": "All"}, | ||
{"top": "vexRiscvTest", "stage": "test", "targets": "Specific [-1]"} | ||
{"top": "fullMeshHwCcTest", "stage": "test"}, | ||
{"top": "fullMeshSwCcTest", "stage": "test"}, | ||
{"top": "linkConfigurationTest", "stage": "test"}, | ||
{"top": "transceiversUpTest", "stage": "test"}, | ||
{"top": "vexRiscvTest", "stage": "test"} | ||
] |
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.