Home | History | Annotate | Download | only in scripts

Lines Matching full:actual

60   actual_files = ['-'.join([source_file.rsplit('-', 1)[0], 'actual.cc'])
76 for source, actual in zip(source_files, actual_files):
77 shutil.copyfile(source, actual)
104 for expected, actual in zip(expected_files, actual_files):
105 print '[ RUN ] %s' % os.path.relpath(actual)
109 with open(actual, 'r') as f:
115 tofile=os.path.relpath(actual)):
117 print '[ FAILED ] %s' % os.path.relpath(actual)
121 print '[ OK ] %s' % os.path.relpath(actual)
123 os.remove(actual)