From 4a6e482b31cc0e2d64d28721761d8b08dd6313c1 Mon Sep 17 00:00:00 2001 From: Chris Sosa Date: Fri, 22 Oct 2010 17:30:21 -0700 Subject: [PATCH] Gzip using the fastest option. Change-Id: Id75e54879e896e42ef69659fc602f625858fd33f BUG= TEST= Review URL: http://codereview.chromium.org/3989004 --- bin/cbuildbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cbuildbot.py b/bin/cbuildbot.py index ea082b651a..721dd70573 100755 --- a/bin/cbuildbot.py +++ b/bin/cbuildbot.py @@ -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'))