OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2009 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 """Client-side script to send a try job to the try server. It communicates to | 5 """Client-side script to send a try job to the try server. It communicates to |
6 the try server by either writting to a svn repository or by directly connecting | 6 the try server by either writting to a svn repository or by directly connecting |
7 to the server by HTTP. | 7 to the server by HTTP. |
8 """ | 8 """ |
9 | 9 |
10 import datetime | 10 import datetime |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 else: | 358 else: |
359 # Add the file to the repo. | 359 # Add the file to the repo. |
360 gclient_utils.FileWrite(full_path, options.diff, 'wb') | 360 gclient_utils.FileWrite(full_path, options.diff, 'wb') |
361 gclient_utils.CheckCall(["svn", "add", full_path], print_error=False) | 361 gclient_utils.CheckCall(["svn", "add", full_path], print_error=False) |
362 temp_file.write(description) | 362 temp_file.write(description) |
363 temp_file.flush() | 363 temp_file.flush() |
364 gclient_utils.CheckCall(["svn", "commit", full_path, '--file', | 364 gclient_utils.CheckCall(["svn", "commit", full_path, '--file', |
365 temp_file.name], print_error=False) | 365 temp_file.name], print_error=False) |
366 except gclient_utils.CheckCallError, e: | 366 except gclient_utils.CheckCallError, e: |
367 raise NoTryServerAccess(' '.join(e.command) + '\nOuput:\n' + | 367 raise NoTryServerAccess(' '.join(e.command) + '\nOuput:\n' + |
368 e.stdout) | 368 e.stdout + e.stderr) |
369 finally: | 369 finally: |
370 temp_file.close() | 370 temp_file.close() |
371 shutil.rmtree(temp_dir, True) | 371 shutil.rmtree(temp_dir, True) |
372 | 372 |
373 | 373 |
374 def PrintSuccess(options): | 374 def PrintSuccess(options): |
375 if not options.dry_run: | 375 if not options.dry_run: |
376 text = 'Patch \'%s\' sent to try server' % options.name | 376 text = 'Patch \'%s\' sent to try server' % options.name |
377 if options.bot: | 377 if options.bot: |
378 text += ': %s' % ', '.join(options.bot) | 378 text += ': %s' % ', '.join(options.bot) |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 except (InvalidScript, NoTryServerAccess), e: | 684 except (InvalidScript, NoTryServerAccess), e: |
685 if swallow_exception: | 685 if swallow_exception: |
686 return 1 | 686 return 1 |
687 print e | 687 print e |
688 return 1 | 688 return 1 |
689 return 0 | 689 return 0 |
690 | 690 |
691 | 691 |
692 if __name__ == "__main__": | 692 if __name__ == "__main__": |
693 sys.exit(TryChange(None, [], False)) | 693 sys.exit(TryChange(None, [], False)) |
OLD | NEW |