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

Side by Side Diff: tools/isolate/run_test_from_archive.py

Issue 10027006: Rename tree_creator.py to run_test_from_archive.py (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/isolate/merge_isolate_test.py ('k') | tools/isolate/tree_creator.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Reads a manifest, creates a tree of hardlinks and runs the test. 6 """Reads a manifest, creates a tree of hardlinks and runs the test.
7 7
8 Keeps a local cache. 8 Keeps a local cache.
9 """ 9 """
10 10
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 parser.error('Unsupported args %s' % ' '.join(args)) 301 parser.error('Unsupported args %s' % ' '.join(args))
302 302
303 manifest = json.load(open_remote(options.manifest)) 303 manifest = json.load(open_remote(options.manifest))
304 return run_tha_test( 304 return run_tha_test(
305 manifest, os.path.abspath(options.cache), options.remote, 305 manifest, os.path.abspath(options.cache), options.remote,
306 options.max_cache_size, options.min_free_space) 306 options.max_cache_size, options.min_free_space)
307 307
308 308
309 if __name__ == '__main__': 309 if __name__ == '__main__':
310 sys.exit(main()) 310 sys.exit(main())
OLDNEW
« no previous file with comments | « tools/isolate/merge_isolate_test.py ('k') | tools/isolate/tree_creator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698