Home | History | Annotate | Download | only in courgette

Lines Matching refs:file1

73     local file1="${1}"
75 local patch="${patches_dir}/${file1}.patch"
77 local dis="${dis_dir}/${file1}.dis"
78 local asm="${dis_dir}/${file1}.asm"
81 courgette -supported "${file1}" >/dev/null
83 courgette -dis "${file1}" "${dis}"
85 cmp -s "${file1}" "${asm}"
87 echo "FAIL_DISASSEMBLE ${file1}"
93 courgette -gen "${file1}" "${file2}" "${patch}"
94 courgette -apply "${file1}" "${patch}" "${apply}"
97 echo "FAIL_COURGETTE ${file1}"
99 echo "PASS_COURGETTE ${file1}"
100 local bsdiff_patch="${patches_dir}/${file1}.bsdiff_patch"
102 bsdiff "${file1}" "${file2}" "${bsdiff_patch}"
103 bspatch "${file1}" "${bsdiff_apply}" "${bsdiff_patch}"
106 echo "FAIL_BSDIFF ${file1}"
108 echo "PASS_BSDIFF ${file1}"
112 echo "SIZE courgette=${patch_size} bsdiff=${bsdiff_patch_size} ${file1}"
114 echo "BEST_TIE ${patch_size} ${file1}"
116 echo "BEST_COURGETTE ${patch_size} ${file1}"
118 echo "BEST_BSDIFF ${bsdiff_patch_size} ${file1}"
132 file1="$(echo "${file}" | awk '{print $1}')"
135 courgette -supported "${file1}" >/dev/null
140 run_test "${file1}" "${file2}"