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

Unified Diff: tools/findit/run_all_tests.py

Issue 391173002: [Findit] Initiate Findit for crash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/findit/https.py ('k') | tools/findit/utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/findit/run_all_tests.py
diff --git a/tools/findit/run_all_tests.py b/tools/findit/run_all_tests.py
new file mode 100755
index 0000000000000000000000000000000000000000..b38408e257b312a70353551bd995972c0c46fe94
--- /dev/null
+++ b/tools/findit/run_all_tests.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python
+# Copyright (c) 2014 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.
+
+import sys
+import unittest
+
+from chromium_deps_unittest import ChromiumDEPSTest
+
+
+if __name__ == '__main__':
+ all_tests_suite = unittest.defaultTestLoader.loadTestsFromModule(
+ sys.modules[__name__])
+ tests = unittest.TestSuite(all_tests_suite)
+ result = unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run(tests)
+ sys.exit(len(result.failures) + len(result.errors))
« no previous file with comments | « tools/findit/https.py ('k') | tools/findit/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698