Commit 31b53aa8 authored by norvell's avatar norvell
Browse files

Fix diff cmds

parent 7774a9d2
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -81,8 +81,8 @@ if __name__ == '__main__':
                    diff_cmds=[]
                    for output in glob.glob(out.group(1) + '*'):
                        diff_cmds.append('$DIFF_BIN '+output.replace(CUT_PATH + r'dut',REF_PATH + r'ref')+' '+output+' >> $LOG_FILE 2>&1')
                    outfile.write(diff_cmds.join('; '))
                outfile.write('\n\n')
                    outfile.write(('; ').join(diff_cmds))
                outfile.write('\n')
        with open('script_footer.txt','r') as footer:
            outfile.write(footer.read())