take out wait for busy in L0BufferCache tests
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 4 May 2020 19:49:02 +0000 (20:49 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 4 May 2020 19:49:02 +0000 (20:49 +0100)
src/soc/experiment/l0_cache.py

index 1b5654ebbb7b9eefe77062bd694180bd36bc17ac..ca1a96361bf9ba2dcaccfd9933feec4a491572ec 100644 (file)
@@ -378,7 +378,7 @@ def l0_cache_st(dut, addr, data):
     # can go straight to reset.
     yield port1.pi.is_st_i.eq(0) #end
     yield port1.pi.addr.ok.eq(0) # set !ok
-    yield from wait_busy(port1, True)    # wait until not busy
+    #yield from wait_busy(port1, False)    # wait until not busy
 
 
 def l0_cache_ld(dut, addr, expected):
@@ -404,7 +404,7 @@ def l0_cache_ld(dut, addr, expected):
     # cleanup
     yield port1.pi.is_ld_i.eq(0) #end
     yield port1.pi.addr.ok.eq(0) # set !ok
-    yield from wait_busy(port1, no=True)    # wait until not busy
+    #yield from wait_busy(port1, no=False)    # wait until not busy
 
     return data