Lines Matching refs:report
32 def roundTrip(ttFile1, options, report): argument
56 report.write("=============================================================\n")
57 report.write(" \"%s\" differs after round tripping\n" % ttFile1)
58 report.write("-------------------------------------------------------------\n")
59 report.writelines(lines)
77 report = open("report.txt", "a+")
81 roundTrip(ttFile, options, report)
88 report.write("=============================================================\n")
89 report.write(" An exception occurred while round tripping")
90 report.write(" \"%s\"\n" % ttFile)
91 traceback.print_exc(file=report)
92 report.write("-------------------------------------------------------------\n")
93 report.close()