Remove unusable test
authorJean THOMAS <git0@pub.jeanthomas.me>
Mon, 27 Jul 2020 14:48:22 +0000 (16:48 +0200)
committerJean THOMAS <git0@pub.jeanthomas.me>
Mon, 27 Jul 2020 14:48:22 +0000 (16:48 +0200)
gram/test/test_soc.py

index 2ceb47a4c8d443f02d4f78ea0a8f1e5a9120bde9..fae835cf5ebfedbf4ac54dff15c41fb28fe9809f 100644 (file)
@@ -178,28 +178,6 @@ class SocTestCase(FHDLTestCase):
 
         runSimulation(soc, process, "test_soc_interleaved_read_write.vcd")
 
-    def test_sequential_reads(self):
-        soc = DDR3SoC(clk_freq=100e6,
-            dramcore_addr=0x00000000,
-            ddr_addr=0x10000000)
-
-        def process():
-            yield from SocTestCase.init_seq(soc.bus)
-
-            # Should read from same row/col/bank
-            yield from wb_read(soc.bus, 0x10000000 >> 2, 0xF, 128)
-            yield from wb_read(soc.bus, 0x10000004 >> 2, 0xF, 128)
-            yield from wb_read(soc.bus, 0x10000008 >> 2, 0xF, 128)
-            yield from wb_read(soc.bus, 0x1000000C >> 2, 0xF, 128)
-
-            # Should read from a different row
-            yield from wb_read(soc.bus, 0x10000010 >> 2, 0xF, 128)
-            yield from wb_read(soc.bus, 0x10000014 >> 2, 0xF, 128)
-            yield from wb_read(soc.bus, 0x10000018 >> 2, 0xF, 128)
-            yield from wb_read(soc.bus, 0x1000001C >> 2, 0xF, 128)
-
-        runSimulation(soc, process, "test_soc_sequential_reads.vcd")
-
     def test_random_memtest(self):
         soc = DDR3SoC(clk_freq=100e6,
             dramcore_addr=0x00000000,