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

Side by Side Diff: native_client_sdk/src/build_tools/tests/test_auto_update_sdktools.py

Issue 10835019: Fix license headers in a number of files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix case Created 8 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # copyright (c) 2012 the chromium authors. all rights reserved. 2 # Copyright (c) 2012 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 os 6 import os
7 import re 7 import re
8 import subprocess 8 import subprocess
9 import sys 9 import sys
10 import tempfile 10 import tempfile
11 import test_server 11 import test_server
12 import unittest 12 import unittest
13 13
14 SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) 14 SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 133
134 134
135 def main(): 135 def main():
136 suite = unittest.defaultTestLoader.loadTestsFromModule(sys.modules[__name__]) 136 suite = unittest.defaultTestLoader.loadTestsFromModule(sys.modules[__name__])
137 result = unittest.TextTestRunner(verbosity=2).run(suite) 137 result = unittest.TextTestRunner(verbosity=2).run(suite)
138 138
139 return int(not result.wasSuccessful()) 139 return int(not result.wasSuccessful())
140 140
141 if __name__ == '__main__': 141 if __name__ == '__main__':
142 sys.exit(main()) 142 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698