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

Side by Side Diff: tools/bots/cross-vm.py

Issue 1161003005: Remove pkg_tested from the default selector (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | tools/testing/dart/test_options.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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,pkg_tested'] 73 '--exclude-suite=pkg']
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
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)
OLDNEW
« no previous file with comments | « no previous file | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698