-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Fix and add IP testbenches missing from CI (#95)
* hw: Fix syntax in IP testbench compile scripts * hw: Canonicalize SSR verification, add to CI * hw: Fix `reqrsp_to_axi_tb` and underlying issue in `reqrsp_test` * gitlab-ci: Preliminarily add `reqrsp_interface` CI * hw: Also fix and enable `tb_axi_to_reqrsp`
- Loading branch information
Showing
11 changed files
with
36 additions
and
40 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
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
# Copyright 2024 ETH Zurich and University of Bologna. | ||
# Solderpad Hardware License, Version 0.51, see LICENSE for details. | ||
# SPDX-License-Identifier: SHL-0.51 | ||
# | ||
# Fabian Schuiki <[email protected]> | ||
# Andreas Kurth <[email protected]> | ||
# Paul Scheffler <[email protected]> | ||
|
||
set -e | ||
ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd) | ||
|
||
[ ! -z "$VSIM" ] || VSIM=vsim | ||
|
||
call_vsim() { | ||
# We treat accessing unwritten associative array (memory) locations as fatal | ||
echo "log -r /*; run -all" | $QUESTA_SEPP $VSIM -c -coverage -voptargs='+acc +cover=sbecft' "$@" -fatal vsim-3829 | tee vsim.log 2>&1 | ||
(grep "SUCCESS" transcript) | ||
(! grep -n "Fatal:" transcript) | ||
(! grep -n "Error:" transcript) | ||
} | ||
|
||
call_vsim tb_simple_ssr | ||
call_vsim tb_simple_ssr_streamer |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.