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

Side by Side Diff: scripts/slave/recipe_modules/test_results/resources/upload_test_results.py

Issue 2411763002: Rename upload_gtest_test_results.py to upload_test_results.py. (Closed)
Patch Set: Update README.md Created 4 years, 2 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
OLDNEW
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
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())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698