@@ -417,67 +417,67 @@ async def should_setup_ready_threshold(interface: HCIBaseTestInterface, q: Queue
417
417
418
418
419
419
@cocotb .test ()
420
- async def run_cmd_setup_threshold_test (dut : SimHandleBase ):
420
+ async def test_cmd_setup_threshold (dut : SimHandleBase ):
421
421
interface = await setup_sim (dut , "hci" )
422
422
await should_setup_ready_threshold (interface , CmdQueueThldHandler ())
423
423
424
424
425
425
@cocotb .test ()
426
- async def run_rx_setup_threshold_test (dut : SimHandleBase ):
426
+ async def test_rx_setup_threshold (dut : SimHandleBase ):
427
427
interface = await setup_sim (dut , "hci" )
428
428
await should_setup_start_threshold (interface , RxQueueThldHandler ())
429
429
await should_setup_ready_threshold (interface , RxQueueThldHandler ())
430
430
431
431
432
432
@cocotb .test ()
433
- async def run_tx_setup_threshold_test (dut : SimHandleBase ):
433
+ async def test_tx_setup_threshold (dut : SimHandleBase ):
434
434
interface = await setup_sim (dut , "hci" )
435
435
await should_setup_start_threshold (interface , TxQueueThldHandler ())
436
436
await should_setup_ready_threshold (interface , TxQueueThldHandler ())
437
437
438
438
439
439
@cocotb .test ()
440
- async def run_resp_setup_threshold_test (dut : SimHandleBase ):
440
+ async def test_resp_setup_threshold (dut : SimHandleBase ):
441
441
interface = await setup_sim (dut , "hci" )
442
442
await should_setup_ready_threshold (interface , RespQueueThldHandler ())
443
443
444
444
445
445
@cocotb .test ()
446
- async def run_ibi_setup_threshold_test (dut : SimHandleBase ):
446
+ async def test_ibi_setup_threshold (dut : SimHandleBase ):
447
447
interface = await setup_sim (dut , "hci" )
448
448
await should_setup_ready_threshold (interface , IbiQueueThldHandler ())
449
449
450
450
451
451
@cocotb .test ()
452
- async def run_tti_tx_desc_setup_threshold_test (dut : SimHandleBase ):
452
+ async def test_tti_tx_desc_setup_threshold (dut : SimHandleBase ):
453
453
interface = await setup_sim (dut , "tti" )
454
454
await should_setup_ready_threshold (interface , TTITxDescQueueThldHandler ())
455
455
456
456
457
457
@cocotb .test ()
458
- async def run_tti_rx_setup_threshold_test (dut : SimHandleBase ):
458
+ async def test_tti_rx_setup_threshold (dut : SimHandleBase ):
459
459
interface = await setup_sim (dut , "tti" )
460
460
# TODO: Enable start threshold test once it's added to the design
461
461
# await should_setup_start_threshold(interface, TTIRxQueueThldHandler())
462
462
await should_setup_ready_threshold (interface , TTIRxQueueThldHandler ())
463
463
464
464
465
465
@cocotb .test ()
466
- async def run_tti_tx_setup_threshold_test (dut : SimHandleBase ):
466
+ async def test_tti_tx_setup_threshold (dut : SimHandleBase ):
467
467
interface = await setup_sim (dut , "tti" )
468
468
# TODO: Enable start threshold test once it's added to the design
469
469
# await should_setup_start_threshold(interface, TTITxQueueThldHandler())
470
470
await should_setup_ready_threshold (interface , TTITxQueueThldHandler ())
471
471
472
472
473
473
@cocotb .test ()
474
- async def run_tti_rx_desc_setup_threshold_test (dut : SimHandleBase ):
474
+ async def test_tti_rx_desc_setup_threshold (dut : SimHandleBase ):
475
475
interface = await setup_sim (dut , "tti" )
476
476
await should_setup_ready_threshold (interface , TTIRxDescQueueThldHandler ())
477
477
478
478
479
479
@cocotb .test ()
480
- async def run_tti_ibi_setup_threshold_test (dut : SimHandleBase ):
480
+ async def test_tti_ibi_setup_threshold (dut : SimHandleBase ):
481
481
interface = await setup_sim (dut , "tti" )
482
482
await should_setup_ready_threshold (interface , TtiIbiQueueThldHandler ())
483
483
@@ -596,32 +596,32 @@ async def should_raise_ready_thld_trig_receiver(
596
596
597
597
598
598
@cocotb .test ()
599
- async def run_resp_should_raise_thld_trig_test (dut : SimHandleBase ):
599
+ async def test_resp_should_raise_thld_trig (dut : SimHandleBase ):
600
600
interface = await setup_sim (dut , "hci" )
601
601
await should_raise_ready_thld_trig_receiver (interface , RespQueueThldHandler ())
602
602
603
603
604
604
@cocotb .test ()
605
- async def run_rx_should_raise_thld_trig_test (dut : SimHandleBase ):
605
+ async def test_rx_should_raise_thld_trig (dut : SimHandleBase ):
606
606
interface = await setup_sim (dut , "hci" )
607
607
await should_raise_start_thld_trig_receiver (interface , RxQueueThldHandler ())
608
608
await should_raise_ready_thld_trig_receiver (interface , RxQueueThldHandler ())
609
609
610
610
611
611
@cocotb .test ()
612
- async def run_ibi_should_raise_thld_trig_test (dut : SimHandleBase ):
612
+ async def test_ibi_should_raise_thld_trig (dut : SimHandleBase ):
613
613
interface = await setup_sim (dut , "hci" )
614
614
await should_raise_ready_thld_trig_receiver (interface , IbiQueueThldHandler ())
615
615
616
616
617
617
@cocotb .test ()
618
- async def run_tti_rx_desc_should_raise_thld_trig_test (dut : SimHandleBase ):
618
+ async def test_tti_rx_desc_should_raise_thld_trig (dut : SimHandleBase ):
619
619
interface = await setup_sim (dut , "tti" )
620
620
await should_raise_ready_thld_trig_receiver (interface , TTIRxDescQueueThldHandler ())
621
621
622
622
623
623
@cocotb .test ()
624
- async def run_tti_rx_should_raise_thld_trig_test (dut : SimHandleBase ):
624
+ async def test_tti_rx_should_raise_thld_trig (dut : SimHandleBase ):
625
625
interface = await setup_sim (dut , "tti" )
626
626
# TODO: Enable start threshold test once it's added to the design
627
627
await should_raise_start_thld_trig_receiver (interface , TTIRxQueueThldHandler ())
@@ -745,20 +745,20 @@ async def should_raise_ready_thld_trig_transmitter(
745
745
746
746
747
747
@cocotb .test ()
748
- async def run_cmd_should_raise_thld_trig_test (dut : SimHandleBase ):
748
+ async def test_cmd_should_raise_thld_trig (dut : SimHandleBase ):
749
749
interface = await setup_sim (dut , "hci" )
750
750
await should_raise_ready_thld_trig_transmitter (interface , CmdQueueThldHandler ())
751
751
752
752
753
753
@cocotb .test ()
754
- async def run_tx_should_raise_thld_trig_test (dut : SimHandleBase ):
754
+ async def test_tx_should_raise_thld_trig (dut : SimHandleBase ):
755
755
interface = await setup_sim (dut , "hci" )
756
756
await should_raise_start_thld_trig_transmitter (interface , TxQueueThldHandler ())
757
757
await should_raise_ready_thld_trig_transmitter (interface , TxQueueThldHandler ())
758
758
759
759
760
760
@cocotb .test ()
761
- async def run_tti_tx_desc_should_raise_thld_trig_test (dut : SimHandleBase ):
761
+ async def test_tti_tx_desc_should_raise_thld_trig (dut : SimHandleBase ):
762
762
interface = await setup_sim (dut , "tti" )
763
763
await should_raise_ready_thld_trig_transmitter (interface , TTITxDescQueueThldHandler ())
764
764
@@ -768,14 +768,14 @@ async def run_tti_tx_desc_should_raise_thld_trig_test(dut: SimHandleBase):
768
768
# falls through it hence is not accounted by the threshold counter. Fixing this
769
769
# requires reworking the converter itself or the queue - converter interface.
770
770
@cocotb .test (skip = True )
771
- async def run_tti_tx_should_raise_thld_trig_test (dut : SimHandleBase ):
771
+ async def test_tti_tx_should_raise_thld_trig (dut : SimHandleBase ):
772
772
interface = await setup_sim (dut , "tti" )
773
773
# TODO: Enable start threshold test once it's added to the design
774
774
await should_raise_start_thld_trig_transmitter (interface , TTITxQueueThldHandler ())
775
775
await should_raise_ready_thld_trig_transmitter (interface , TTITxQueueThldHandler ())
776
776
777
777
778
778
@cocotb .test ()
779
- async def run_tti_ibi_should_raise_thld_trig_test (dut : SimHandleBase ):
779
+ async def test_tti_ibi_should_raise_thld_trig (dut : SimHandleBase ):
780
780
interface = await setup_sim (dut , "tti" )
781
781
await should_raise_ready_thld_trig_transmitter (interface , TtiIbiQueueThldHandler ())
0 commit comments