-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#69543] Add
STREAM_RD
state coverage in axi4_to_ahb.sv
Signed-off-by: Filip Kokosinski <[email protected]>
- Loading branch information
1 parent
b4f7a41
commit 0122aca
Showing
7 changed files
with
76 additions
and
5 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
18 changes: 18 additions & 0 deletions
18
verification/block/lib_axi4_to_ahb/test_axi_read_channel_multiple.py
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,18 @@ | ||
# Copyright (c) 2024 Antmicro <www.antmicro.com> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
import pyuvm | ||
from cocotb.queue import QueueFull | ||
from coordinator_seq import TestReadChannelMultipleSeq | ||
from testbench import BaseTest | ||
|
||
|
||
@pyuvm.test(expect_error=TimeoutError) | ||
class TestAXIReadChannelMultiple(BaseTest): | ||
def end_of_elaboration_phase(self): | ||
self.seq = TestReadChannelMultipleSeq.create("stimulus") | ||
|
||
async def run(self): | ||
self.raise_objection() | ||
await self.seq.start() | ||
self.drop_objection() |
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