OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 3 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
4 # for details. All rights reserved. Use of this source code is governed by a | 4 # for details. All rights reserved. Use of this source code is governed by a |
5 # BSD-style license that can be found in the LICENSE file. | 5 # BSD-style license that can be found in the LICENSE file. |
6 | 6 |
7 import os | 7 import os |
8 import os.path | 8 import os.path |
9 import shutil | 9 import shutil |
10 import sys | 10 import sys |
11 import subprocess | 11 import subprocess |
12 | 12 |
13 import bot | 13 import bot |
14 import bot_utils | 14 import bot_utils |
15 | 15 |
16 TARGETS = [ | 16 TARGETS = [ |
17 'language_2', | 17 'language_2', |
18 'corelib_2', | 18 'corelib_2', |
19 'lib_2', | 19 'lib_2', |
20 # TODO(rnystrom): Remove these when all tests have been migrated out. | 20 # TODO(rnystrom): Remove these when all tests have been migrated out. |
21 'language_strong', | 21 'language_strong', |
22 'corelib_strong', | |
23 'lib_strong' | 22 'lib_strong' |
24 ] | 23 ] |
25 | 24 |
26 FLAGS = [ | 25 FLAGS = [ |
27 '--strong' | 26 '--strong' |
28 ] | 27 ] |
29 | 28 |
30 if __name__ == '__main__': | 29 if __name__ == '__main__': |
31 with bot.BuildStep('Build SDK and dartdevc test packages'): | 30 with bot.BuildStep('Build SDK and dartdevc test packages'): |
32 bot.RunProcess([sys.executable, './tools/build.py', '--mode=release', | 31 bot.RunProcess([sys.executable, './tools/build.py', '--mode=release', |
33 '--arch=x64', 'dartdevc_test']) | 32 '--arch=x64', 'dartdevc_test']) |
34 | 33 |
35 with bot.BuildStep('Run tests'): | 34 with bot.BuildStep('Run tests'): |
36 (bot_name, _) = bot.GetBotName() | 35 (bot_name, _) = bot.GetBotName() |
37 system = bot_utils.GetSystemFromName(bot_name) | 36 system = bot_utils.GetSystemFromName(bot_name) |
38 if system == 'linux': | 37 if system == 'linux': |
39 bot.RunProcess([ | 38 bot.RunProcess([ |
40 'xvfb-run', sys.executable, './tools/test.py', '--strong', '-mrelease', | 39 'xvfb-run', sys.executable, './tools/test.py', '--strong', '-mrelease', |
41 '-cdartdevc', '-rchrome', '-ax64', '--report', '--time', '--checked', | 40 '-cdartdevc', '-rchrome', '-ax64', '--report', '--time', '--checked', |
42 '--progress=buildbot'] + TARGETS ) | 41 '--progress=buildbot'] + TARGETS ) |
43 else: | 42 else: |
44 info = bot.BuildInfo('dartdevc', 'chrome', 'release', system, | 43 info = bot.BuildInfo('dartdevc', 'chrome', 'release', system, |
45 arch='x64', checked=True) | 44 arch='x64', checked=True) |
46 bot.RunTest('dartdevc', info, TARGETS, flags=FLAGS) | 45 bot.RunTest('dartdevc', info, TARGETS, flags=FLAGS) |
OLD | NEW |