test: fix missing cases in bankmachine test
This commit is contained in:
parent
36d62d5301
commit
e74a2e6a02
|
@ -256,7 +256,7 @@ class TestBankMachine(unittest.TestCase):
|
||||||
|
|
||||||
def test_burst_no_request_lost(self):
|
def test_burst_no_request_lost(self):
|
||||||
# Verify that no request is lost in fast bursts of requests regardless of cmd_buffer_depth
|
# Verify that no request is lost in fast bursts of requests regardless of cmd_buffer_depth
|
||||||
for cmd_buffer_depth in [8]:
|
for cmd_buffer_depth in [8, 1, 0]:
|
||||||
settings = dict(cmd_buffer_depth=cmd_buffer_depth)
|
settings = dict(cmd_buffer_depth=cmd_buffer_depth)
|
||||||
with self.subTest(**settings):
|
with self.subTest(**settings):
|
||||||
dut = BankMachineDUT(1, controller_settings=settings)
|
dut = BankMachineDUT(1, controller_settings=settings)
|
||||||
|
|
Loading…
Reference in New Issue