Rename VCD file output
authorJean THOMAS <git0@pub.jeanthomas.me>
Fri, 10 Jul 2020 13:06:51 +0000 (15:06 +0200)
committerJean THOMAS <git0@pub.jeanthomas.me>
Fri, 10 Jul 2020 13:06:51 +0000 (15:06 +0200)
gram/test/test_soc.py

index b7aa5cae5e9f95c528b6109cc7d9c42078c09ee8..4d243b8df5f8ec2498e94f19b4a0f841b4f91220 100644 (file)
@@ -156,7 +156,7 @@ class SocTestCase(FHDLTestCase):
                 yield
                 self.assertEqual(res, 0xACAB2020)
 
-        runSimulation(m, process, "test_soc.vcd")
+        runSimulation(m, process, "test_soc_multiple_reads.vcd")
 
     def test_interleaved_read_write(self):
         m = Module()
@@ -177,4 +177,4 @@ class SocTestCase(FHDLTestCase):
             res = yield from wb_read(soc.bus, 0x10000004 >> 2, 0xF, 128)
             self.assertEqual(res, 0x12345678)
 
-        runSimulation(m, process, "test_soc.vcd")
+        runSimulation(m, process, "test_soc_interleaved_read_write.vcd")