-
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.
hw: Canonicalize SSR verification, add to CI
- Loading branch information
Showing
6 changed files
with
27 additions
and
30 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
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 <fschuiki@iis.ee.ethz.ch> | ||
# Andreas Kurth <akurth@iis.ee.ethz.ch> | ||
# Paul Scheffler <paulsc@iis.ee.ethz.ch> | ||
|
||
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.