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

Side by Side Diff: googletest/README.py

Issue 19917006: Move all googletest related scripts into googletest/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/swarm_client
Patch Set: Remove unnecessary pylint warning disable Created 7 years, 4 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 | « fix_test_cases.py ('k') | googletest/fix_test_cases.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # coding=utf-8
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 ###
8 # Run me to generate the documentation!
9 ###
10
11 """Google Test specific tracing and isolation infrastructure.
12
13 You will find more general information in the directory above.
14 """
15
16 import os
17 import sys
18
19
20 def main():
21 for i in sorted(os.listdir(os.path.dirname(os.path.abspath(__file__)))):
22 if not i.endswith('.py') or i == 'PRESUBMIT.py':
23 continue
24 module = __import__(i[:-3])
25 if hasattr(module, '__doc__'):
26 print module.__name__
27 print ''.join(' %s\n' % i for i in module.__doc__.splitlines())
28 return 0
29
30
31 if __name__ == '__main__':
32 sys.exit(main())
OLDNEW
« no previous file with comments | « fix_test_cases.py ('k') | googletest/fix_test_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698