Skip to content

Commit 797afc5

Browse files
committed
noxfile.py: Move i3c_target and recovery tests to separate sessions
Signed-off-by: Jan Malek <[email protected]>
1 parent 08cdb1d commit 797afc5

File tree

1 file changed

+44
-4
lines changed

1 file changed

+44
-4
lines changed

verification/cocotb/noxfile.py

Lines changed: 44 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,6 @@ def i2c_target_fsm_verify(session, test_group, test_name, coverage, simulator):
355355
["tests", "ahb", "target"],
356356
["i3c_ahb"],
357357
[
358-
"test_i3c_target",
359-
"test_recovery",
360358
"test_interrupts",
361359
# "test_enter_exit_hdr_mode",
362360
"test_target_reset",
@@ -369,13 +367,33 @@ def i3c_ahb_verify(session, test_group, test_name, coverage, simulator):
369367
verify_top(session, test_group, test_name, coverage, simulator)
370368

371369

370+
@test(
371+
TestParams(
372+
["tests", "ahb", "target"],
373+
["i3c_ahb"],
374+
["test_i3c_target"],
375+
)
376+
)
377+
def i3c_ahb_target_verify(session, test_group, test_name, coverage, simulator):
378+
verify_top(session, test_group, test_name, coverage, simulator)
379+
380+
381+
@test(
382+
TestParams(
383+
["tests", "ahb", "target"],
384+
["i3c_ahb"],
385+
["test_recovery"],
386+
)
387+
)
388+
def i3c_ahb_recovery_verify(session, test_group, test_name, coverage, simulator):
389+
verify_top(session, test_group, test_name, coverage, simulator)
390+
391+
372392
@test(
373393
TestParams(
374394
["tests", "axi", "target"],
375395
["i3c_axi"],
376396
[
377-
"test_i3c_target",
378-
"test_recovery",
379397
# "test_enter_exit_hdr_mode",
380398
"test_target_reset",
381399
"test_ccc",
@@ -388,6 +406,28 @@ def i3c_axi_verify(session, test_group, test_name, coverage, simulator):
388406
verify_top(session, test_group, test_name, coverage, simulator)
389407

390408

409+
@test(
410+
TestParams(
411+
["tests", "axi", "target"],
412+
["i3c_axi"],
413+
["test_i3c_target"],
414+
)
415+
)
416+
def i3c_axi_target_verify(session, test_group, test_name, coverage, simulator):
417+
verify_top(session, test_group, test_name, coverage, simulator)
418+
419+
420+
@test(
421+
TestParams(
422+
["tests", "axi", "target"],
423+
["i3c_axi"],
424+
["test_recovery"],
425+
)
426+
)
427+
def i3c_axi_recovery_verify(session, test_group, test_name, coverage, simulator):
428+
verify_top(session, test_group, test_name, coverage, simulator)
429+
430+
391431
@test(
392432
TestParams(
393433
["tests", "ahb", "axi", "target"],

0 commit comments

Comments
 (0)