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

Unified 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, 9 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
Index: mojo/public/bindings/pylib/generate/run_mojom_tests.py
diff --git a/mojo/public/bindings/pylib/generate/run_mojom_tests.py b/mojo/public/bindings/pylib/generate/run_mojom_tests.py
deleted file mode 100755
index e57ef477e9ebfed0bf01393b51edf0a9689fbe2e..0000000000000000000000000000000000000000
--- a/mojo/public/bindings/pylib/generate/run_mojom_tests.py
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2013 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.
-
-""" Test runner for Mojom """
-
-import subprocess
-import sys
-
-def TestMojom(testname, args):
- print '\nRunning unit tests for %s.' % testname
- try:
- args = [sys.executable, testname] + args
- subprocess.check_call(args, stdout=sys.stdout)
- print 'Succeeded'
- return 0
- except subprocess.CalledProcessError as err:
- print 'Failed with %s.' % str(err)
- return 1
-
-
-def main(args):
- errors = 0
- errors += TestMojom('mojom_tests.py', ['--test'])
- errors += TestMojom('mojom_data_tests.py', ['--test'])
- errors += TestMojom('mojom_pack_tests.py', ['--test'])
-
- if errors:
- print '\nFailed tests.'
- return min(errors, 127) # Make sure the return value doesn't "wrap".
-
-
-if __name__ == '__main__':
- sys.exit(main(sys.argv[1:]))
« 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