-
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] wip: increase
axi4_to_ahb.sv
cvg
- Loading branch information
1 parent
2388ae0
commit 639b06a
Showing
5 changed files
with
78 additions
and
14 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
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() | ||
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