From c042cfc181ae24f8652256b20558291078d1e5ba Mon Sep 17 00:00:00 2001 From: Tobias Platen Date: Sat, 11 Dec 2021 17:14:25 +0100 Subject: [PATCH] typo fix, add missing stop statement to _test_loadstore1_ifetch_multi() --- src/soc/experiment/test/test_loadstore1.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/soc/experiment/test/test_loadstore1.py b/src/soc/experiment/test/test_loadstore1.py index 251e3d9b..cb613d10 100644 --- a/src/soc/experiment/test/test_loadstore1.py +++ b/src/soc/experiment/test/test_loadstore1.py @@ -192,12 +192,14 @@ def _test_loadstore1_ifetch_multi(dut, mem): # should cope with some addresses being invalid addrs = [0x10200,0x10204,10208,10200] for addr in addrs: - yield from debug(dut, "TODO_fetch_from "+hex(addrs)) + yield from debug(dut, "TODO_fetch_from "+hex(addr)) # use the new interface in this test yield yield yield + wbget.stop = True + def _test_loadstore1_ifetch(dut, mem): """test_loadstore1_ifetch -- 2.30.2