save to correct files, unit test 15
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 6 Apr 2019 11:14:07 +0000 (12:14 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 6 Apr 2019 11:14:07 +0000 (12:14 +0100)
src/add/test_buf_pipe.py

index d58ea85e6b9f86053a5d495df417ec7d1a6a56ac..7bf5257f15e07b08a172d1424728dd3b2badd897 100644 (file)
@@ -895,12 +895,12 @@ if __name__ == '__main__':
     dut = ExampleBufModeUnBufPipe()
     data = data_chain1()
     test = Test5(dut, test9_resultfn, data=data)
-    run_simulation(dut, [test.send, test.rcv], vcd_name="test_bufunbuf999.vcd")
+    run_simulation(dut, [test.send, test.rcv], vcd_name="test_bufunbuf15.vcd")
     ports = [dut.p.i_valid, dut.n.i_ready,
              dut.n.o_valid, dut.p.o_ready] + \
              [dut.p.i_data] + [dut.n.o_data]
     vl = rtlil.convert(dut, ports=ports)
-    with open("test_bufunbuf999.il", "w") as f:
+    with open("test_bufunbuf15.il", "w") as f:
         f.write(vl)
 
     print ("test 999 (expected to fail, which is a bug)")