Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1154)

Unified Diff: content/test/ct/run_ct_skps.py

Issue 1692153002: Revert of [CT] Use zips of SKPs to speed up "isolate tests" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/ct_skps.isolate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/ct/run_ct_skps.py
diff --git a/content/test/ct/run_ct_skps.py b/content/test/ct/run_ct_skps.py
index dd4ef9f7b63a2bb9cdc7440f5332befaab94b538..10c5a31b03ba3db82b8d0d28c60bdb175a654d40 100755
--- a/content/test/ct/run_ct_skps.py
+++ b/content/test/ct/run_ct_skps.py
@@ -9,7 +9,6 @@
import os
import subprocess
import sys
-import zipfile
PARENT_DIR = os.path.dirname(os.path.realpath(__file__))
@@ -36,15 +35,8 @@
'isolateserver all artifacts in this dir.')
args = parser.parse_args()
- # Unzip SKPs into a directory.
- skps_zip = os.path.join(REPOS_BASE_DIR, 'skps',
- 'slave%d.zip' % args.slave_num)
+ tool_path = os.path.join(SKIA_SRC_DIR, 'out', args.configuration, args.tool)
skps_dir = os.path.join(REPOS_BASE_DIR, 'skps', 'slave%d' % args.slave_num)
- os.makedirs(skps_dir)
- with zipfile.ZipFile(skps_zip, 'r') as zip_ref:
- zip_ref.extractall(skps_dir)
-
- tool_path = os.path.join(SKIA_SRC_DIR, 'out', args.configuration, args.tool)
resource_path = os.path.join(SKIA_SRC_DIR, 'resources')
cmd = [tool_path]
« no previous file with comments | « chrome/ct_skps.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698