Gzip using the fastest option.

Change-Id: Id75e54879e896e42ef69659fc602f625858fd33f

BUG=
TEST=

Review URL: http://codereview.chromium.org/3989004
This commit is contained in:
Chris Sosa 2010-10-22 17:30:21 -07:00
parent 9b07a8ed9d
commit 4a6e482b31

View File

@ -426,7 +426,7 @@ def _ArchiveTestResults(buildroot, board, archive_dir, test_results_dir):
image_name = 'chromiumos_qemu_image.bin'
image_path = os.path.join(buildroot, 'src', 'build', 'images', board,
'latest', image_name)
RunCommand(['gzip', '-f', image_path])
RunCommand(['gzip', '-f', '--fast', image_path])
shutil.copyfile(image_path + '.gz', os.path.join(archive_target,
image_name + '.gz'))