Lines Matching refs:output_file
38 output_file = get_compile_output_file_path(task, is_debug)
39 output_dir = os.path.dirname(output_file)
40 output_file_name = os.path.basename(output_file)
527 output_file = get_compile_output_file_path(task, True)
528 output_dir = os.path.dirname(output_file)
529 output_file_name = os.path.basename(output_file)
715 output_file = ''
718 output_file = os.path.join(
721 output_file = os.path.join(
724 return output_file
727 def validate_compile_output(info, task, is_debug, output_file=''): argument
730 if output_file == '':
731 output_file = get_compile_output_file_path(task, is_debug)
732 uncompressed_output_file = output_file + '.uncompressed'
734 if not os.path.exists(output_file):
736 task.name, output_file)
743 with zipfile.ZipFile(output_file, 'r') as zip_ref:
783 def validate(compilation_info, task, is_debug, stdout, stderr, output_file=''): argument
797 passed = validate_compile_output(info, task, is_debug, output_file)
906 output_file = get_compile_output_file_path(task, is_debug)
907 shutil.copy(output_file, backup_output_path)
909 backup_output_path, os.path.basename(output_file))