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

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: update README.py Created 7 years, 5 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 # Line too long (NN/80)
csharp 2013/07/24 20:21:16 I don't think you need this, right?
M-A Ruel 2013/07/24 20:29:58 Right, removed.
12 # pylint: disable=C0301
13
14 """Google Test specific tracing and isolation infrastructure.
15
16 You will find more general information in the directory above.
17 """
18
19 import os
20 import sys
21
22
23 def main():
24 for i in sorted(os.listdir(os.path.dirname(os.path.abspath(__file__)))):
25 if not i.endswith('.py') or i == 'PRESUBMIT.py':
26 continue
27 module = __import__(i[:-3])
28 if hasattr(module, '__doc__'):
29 print module.__name__
30 print ''.join(' %s\n' % i for i in module.__doc__.splitlines())
31 return 0
32
33
34 if __name__ == '__main__':
35 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