Changeset 994 for tester/tester.py
- Timestamp:
- 07/09/20 13:51:28 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tester/tester.py ΒΆ
r987 r994 94 94 failed_result_filename = '_test' 95 95 f = open(os.path.join(globals.THISDIR, failed_result_filename + '.Failed-output'), 'w') # files are easier to compare than stdout 96 print('\n'.join(jest) , end="", file=f)96 print('\n'.join(jest)+'\n', end="", file=f) # not sure why one last empty line is always lost (or one too much is expected?), adding here... 97 97 f = open(os.path.join(globals.THISDIR, failed_result_filename + '.Failed-goal'), 'w') # files are easier to compare than stdout 98 98 print('\n'.join(goal), end="", file=f)
Note: See TracChangeset
for help on using the changeset viewer.