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

Unified Diff: tools/isolate/README.py

Issue 11045023: Move src/tools/isolate to src/tools/swarm_client as a DEPS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use r159961 Created 8 years, 2 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 | « tools/isolate/PRESUBMIT.py ('k') | tools/isolate/fix_test_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/isolate/README.py
diff --git a/tools/isolate/README.py b/tools/isolate/README.py
deleted file mode 100755
index 2cd4cca526e7b23707086b546985ab7b93456a5f..0000000000000000000000000000000000000000
--- a/tools/isolate/README.py
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/env python
-# coding=utf-8
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-###
-# Run me to generate the documentation!
-###
-
-"""Test tracing and isolation infrastructure.
-
-Scripts are compartmentalized by their name:
-- trace_*.py: Tracing infrastructure scripts.
-- isolate_*.py: Executable isolation scripts. (TODO)
-- *_test_cases.py: Scripts specifically managing GTest executables.
-
-A few scripts have strict dependency rules:
-- run_test_cases.py, run_test_from_archive.py, shard.py and trace_inputs.py
- depends on no other script so they can be run outside the checkout.
-- The pure tracing scripts (trace_inputs.py and trace_test_cases.py) do not know
- about isolate infrastructure.
-- Scripts without _test_cases suffix do not know about GTest.
-- Scripts without isolate_ prefix do not know about the isolation
- infrastructure. (TODO)
-
-See http://dev.chromium.org/developers/testing/isolated-testing for more info.
-"""
-
-import os
-import sys
-
-
-def main():
- for i in sorted(os.listdir(os.path.dirname(os.path.abspath(__file__)))):
- if not i.endswith('.py') or i == 'PRESUBMIT.py':
- continue
- module = __import__(i[:-3])
- if hasattr(module, '__doc__'):
- print module.__name__
- print ''.join(' %s\n' % i for i in module.__doc__.splitlines())
- return 0
-
-
-if __name__ == '__main__':
- sys.exit(main())
« no previous file with comments | « tools/isolate/PRESUBMIT.py ('k') | tools/isolate/fix_test_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698