Skip to content

Commit

Permalink
Added nox session, added test to the CI
Browse files Browse the repository at this point in the history
Internal-tag: [#49748]
Signed-off-by: Maciej Kurc <[email protected]>
  • Loading branch information
mkurc-ant committed Oct 4, 2023
1 parent 34ec151 commit 676477c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-uarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- "block/exu_alu"
- "block/exu_mul"
- "block/exu_div"
- "block/iccm"
env:
CCACHE_DIR: "/opt/verification/.cache/"
VERILATOR_VERSION: v5.010
Expand Down
12 changes: 12 additions & 0 deletions verification/block/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,18 @@ def exu_mul_verify(session, blockName, testName, coverage):
def exu_div_verify(session, blockName, testName, coverage):
verify_block(session, blockName, testName, coverage)

@nox.session(tags=["tests"])
@nox.parametrize("blockName", ["iccm"])
@nox.parametrize(
"testName",
[
"test_readwrite",
],
)
@nox.parametrize("coverage", coverageTypes)
def iccm_verify(session, blockName, testName, coverage):
verify_block(session, blockName, testName, coverage)


@nox.session()
def isort(session: nox.Session) -> None:
Expand Down

0 comments on commit 676477c

Please sign in to comment.