From: Luke Kenneth Casson Leighton Date: Sat, 6 Apr 2019 11:14:07 +0000 (+0100) Subject: save to correct files, unit test 15 X-Git-Tag: ls180-24jan2020~1310 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b56536369f9868692db3bd66bab89f1aea293783;p=ieee754fpu.git save to correct files, unit test 15 --- 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)")