Skip to content

Commit

Permalink
Revert "wip: disable tests"
Browse files Browse the repository at this point in the history
This reverts commit 24063d6.
  • Loading branch information
fkokosinski committed Dec 12, 2024
1 parent 24063d6 commit f77c2eb
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
18 changes: 9 additions & 9 deletions verification/block/lib_axi4_to_ahb/test_axi.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
from testbench import BaseTest


#@pyuvm.test()
#class TestAXI(BaseTest):
# def end_of_elaboration_phase(self):
# self.seq = TestBothChannelsSeq.create("stimulus")
#
# async def run(self):
# self.raise_objection()
# await self.seq.start()
# self.drop_objection()
@pyuvm.test()
class TestAXI(BaseTest):
def end_of_elaboration_phase(self):
self.seq = TestBothChannelsSeq.create("stimulus")

async def run(self):
self.raise_objection()
await self.seq.start()
self.drop_objection()
18 changes: 9 additions & 9 deletions verification/block/lib_axi4_to_ahb/test_axi_read_channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
from testbench import BaseTest


#@pyuvm.test()
#class TestAXIReadChannel(BaseTest):
# def end_of_elaboration_phase(self):
# self.seq = TestReadChannelSeq.create("stimulus")
#
# async def run(self):
# self.raise_objection()
# await self.seq.start()
# self.drop_objection()
@pyuvm.test()
class TestAXIReadChannel(BaseTest):
def end_of_elaboration_phase(self):
self.seq = TestReadChannelSeq.create("stimulus")

async def run(self):
self.raise_objection()
await self.seq.start()
self.drop_objection()
18 changes: 9 additions & 9 deletions verification/block/lib_axi4_to_ahb/test_axi_write_channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
from testbench import BaseTest


#@pyuvm.test()
#class TestAXIWriteChannel(BaseTest):
# def end_of_elaboration_phase(self):
# self.seq = TestWriteChannelSeq.create("stimulus")
#
# async def run(self):
# self.raise_objection()
# await self.seq.start()
# self.drop_objection()
@pyuvm.test()
class TestAXIWriteChannel(BaseTest):
def end_of_elaboration_phase(self):
self.seq = TestWriteChannelSeq.create("stimulus")

async def run(self):
self.raise_objection()
await self.seq.start()
self.drop_objection()

0 comments on commit f77c2eb

Please sign in to comment.