| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 import os | 6 import os |
| 7 import re | 7 import re |
| 8 import sys | 8 import sys |
| 9 | 9 |
| 10 import bot | 10 import bot |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 finally: | 63 finally: |
| 64 for path in temporary_files: | 64 for path in temporary_files: |
| 65 if os.path.exists(path): | 65 if os.path.exists(path): |
| 66 os.remove(path) | 66 os.remove(path) |
| 67 | 67 |
| 68 def target_builder(arch, mode): | 68 def target_builder(arch, mode): |
| 69 test_py = os.path.join('tools', 'test.py') | 69 test_py = os.path.join('tools', 'test.py') |
| 70 test_args = [sys.executable, test_py, '--progress=line', '--report', | 70 test_args = [sys.executable, test_py, '--progress=line', '--report', |
| 71 '--time', '--compiler=none', '--runtime=vm', '--write-debug-log', | 71 '--time', '--compiler=none', '--runtime=vm', '--write-debug-log', |
| 72 '--write-test-outcome-log', '--mode=' + mode, '--arch=' + arch, | 72 '--write-test-outcome-log', '--mode=' + mode, '--arch=' + arch, |
| 73 '--exclude-suite=pkg'] | 73 '--exclude-suite=pkg,pkg_tested'] |
| 74 | 74 |
| 75 revision = os.environ['BUILDBOT_GOT_REVISION'] | 75 revision = os.environ['BUILDBOT_GOT_REVISION'] |
| 76 tarball = tarball_name(arch, mode, revision) | 76 tarball = tarball_name(arch, mode, revision) |
| 77 temporary_files = [tarball] | 77 temporary_files = [tarball] |
| 78 bot.Clobber() | 78 bot.Clobber() |
| 79 try: | 79 try: |
| 80 with bot.BuildStep('Fetch build tarball'): | 80 with bot.BuildStep('Fetch build tarball'): |
| 81 run([GSUTIL, 'cp', "%s/%s" % (GCS_BUCKET, tarball), tarball]) | 81 run([GSUTIL, 'cp', "%s/%s" % (GCS_BUCKET, tarball), tarball]) |
| 82 | 82 |
| 83 with bot.BuildStep('Unpack build tarball'): | 83 with bot.BuildStep('Unpack build tarball'): |
| (...skipping 25 matching lines...) Expand all Loading... |
| 109 mode = target_vm_pattern_match.group(2) | 109 mode = target_vm_pattern_match.group(2) |
| 110 target_builder(arch, mode) | 110 target_builder(arch, mode) |
| 111 else: | 111 else: |
| 112 raise Exception("Unknown builder name %s" % name) | 112 raise Exception("Unknown builder name %s" % name) |
| 113 | 113 |
| 114 if __name__ == '__main__': | 114 if __name__ == '__main__': |
| 115 try: | 115 try: |
| 116 sys.exit(main()) | 116 sys.exit(main()) |
| 117 except OSError as e: | 117 except OSError as e: |
| 118 sys.exit(e.errno) | 118 sys.exit(e.errno) |
| OLD | NEW |