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

Side by Side Diff: mojo/public/bindings/pylib/generate/run_mojom_tests.py

Issue 226263002: Mojo: Move mojo/public/bindings to mojo/public/tools/bindings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 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
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """ Test runner for Mojom """
7
8 import subprocess
9 import sys
10
11 def TestMojom(testname, args):
12 print '\nRunning unit tests for %s.' % testname
13 try:
14 args = [sys.executable, testname] + args
15 subprocess.check_call(args, stdout=sys.stdout)
16 print 'Succeeded'
17 return 0
18 except subprocess.CalledProcessError as err:
19 print 'Failed with %s.' % str(err)
20 return 1
21
22
23 def main(args):
24 errors = 0
25 errors += TestMojom('mojom_tests.py', ['--test'])
26 errors += TestMojom('mojom_data_tests.py', ['--test'])
27 errors += TestMojom('mojom_pack_tests.py', ['--test'])
28
29 if errors:
30 print '\nFailed tests.'
31 return min(errors, 127) # Make sure the return value doesn't "wrap".
32
33
34 if __name__ == '__main__':
35 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « mojo/public/bindings/pylib/generate/mojom_tests.py ('k') | mojo/public/bindings/pylib/generate/template_expander.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698