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

Side by Side Diff: tools/findit/run_all_tests.py

Issue 465403004: [Findit] Support sending cookies for http requests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 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 | « tools/findit/https.py ('k') | tools/findit/utils.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import sys 6 import sys
7 import unittest 7 import unittest
8 8
9 from chromium_deps_unittest import ChromiumDEPSTest 9 from chromium_deps_unittest import ChromiumDEPSTest
10 from common.http_client_local_unittest import HttpClientLocalTest
10 11
11 12
12 if __name__ == '__main__': 13 if __name__ == '__main__':
13 all_tests_suite = unittest.defaultTestLoader.loadTestsFromModule( 14 all_tests_suite = unittest.defaultTestLoader.loadTestsFromModule(
14 sys.modules[__name__]) 15 sys.modules[__name__])
15 tests = unittest.TestSuite(all_tests_suite) 16 tests = unittest.TestSuite(all_tests_suite)
16 result = unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run(tests) 17 result = unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run(tests)
17 sys.exit(len(result.failures) + len(result.errors)) 18 sys.exit(len(result.failures) + len(result.errors))
OLDNEW
« 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