Skip to content

Commit

Permalink
Update configs
Browse files Browse the repository at this point in the history
  • Loading branch information
kiryk committed Oct 4, 2023
1 parent 4c55549 commit 9117caa
Show file tree
Hide file tree
Showing 2 changed files with 10 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 @@ -17,6 +17,7 @@ jobs:
- "block/pic_gw"
- "block/dma"
- "block/ifu_compress"
- "block/dec_tl"
- "block/exu_alu"
- "block/exu_mul"
- "block/exu_div"
Expand Down
9 changes: 9 additions & 0 deletions verification/block/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,14 @@ def pic_gw_verify(session, blockName, testName, coverage):
verify_block(session, blockName, testName, coverage)


@nox.session(tags=["tests"])
@nox.parametrize("blockName", ["dec_tl"])
@nox.parametrize("testName", ["test_dec_tl"])
@nox.parametrize("coverage", "toggle")
def dec_tl_verify(session, blockName, testName, coverage):
verify_block(session, blockName, testName, coverage)


@nox.session(tags=["tests"])
@nox.parametrize("blockName", ["dma"])
@nox.parametrize(
Expand Down Expand Up @@ -176,6 +184,7 @@ def dma_verify(session, blockName, testName, coverage):
def ifu_compress_verify(session, blockName, testName, coverage):
verify_block(session, blockName, testName, coverage)


@nox.session(tags=["tests"])
@nox.parametrize("blockName", ["exu_alu"])
@nox.parametrize(
Expand Down

0 comments on commit 9117caa

Please sign in to comment.