From b56536369f9868692db3bd66bab89f1aea293783 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 6 Apr 2019 12:14:07 +0100 Subject: [PATCH] save to correct files, unit test 15 --- src/add/test_buf_pipe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/add/test_buf_pipe.py b/src/add/test_buf_pipe.py index d58ea85e..7bf5257f 100644 --- a/src/add/test_buf_pipe.py +++ b/src/add/test_buf_pipe.py @@ -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)") -- 2.30.2