| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2015 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 """See README.md for usage instructions. | 6 """See README.md for usage instructions. |
| 7 | 7 |
| 8 This file heavily modified from build/scripts/slave/gtest_slave_utils.py and | 8 This file heavily modified from build/scripts/slave/gtest_slave_utils.py and |
| 9 is intended to replace it as all tests move to swarming. | 9 is intended to replace it as all tests move to swarming. |
| 10 TODO(estaab): Remove build/scripts/slave/gtest.* once this is fully deployed. | 10 TODO(estaab): Remove build/scripts/slave/gtest.* once this is fully deployed. |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 144 |
| 145 # Set uploading timeout in case appengine server is having problem. | 145 # Set uploading timeout in case appengine server is having problem. |
| 146 # 120 seconds are more than enough to upload test results. | 146 # 120 seconds are more than enough to upload test results. |
| 147 test_results_uploader.upload_test_results( | 147 test_results_uploader.upload_test_results( |
| 148 options.test_results_server, attrs, files, 120) | 148 options.test_results_server, attrs, files, 120) |
| 149 return 0 | 149 return 0 |
| 150 | 150 |
| 151 | 151 |
| 152 if __name__ == '__main__': | 152 if __name__ == '__main__': |
| 153 sys.exit(main()) | 153 sys.exit(main()) |
| OLD | NEW |