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

Side by Side Diff: tools/bots/ddc_tests.py

Issue 2997863002: Add all core tests to DDC linux bots (Closed)
Patch Set: Created 3 years, 4 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 | no next file » | 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/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
(...skipping 21 matching lines...) Expand all
32 bot.RunProcess([sys.executable, './tools/build.py', '--mode=release', 32 bot.RunProcess([sys.executable, './tools/build.py', '--mode=release',
33 '--arch=x64', 'dartdevc_test']) 33 '--arch=x64', 'dartdevc_test'])
34 34
35 with bot.BuildStep('Run tests'): 35 with bot.BuildStep('Run tests'):
36 (bot_name, _) = bot.GetBotName() 36 (bot_name, _) = bot.GetBotName()
37 system = bot_utils.GetSystemFromName(bot_name) 37 system = bot_utils.GetSystemFromName(bot_name)
38 if system == 'linux': 38 if system == 'linux':
39 bot.RunProcess([ 39 bot.RunProcess([
40 'xvfb-run', sys.executable, './tools/test.py', '--strong', '-mrelease', 40 'xvfb-run', sys.executable, './tools/test.py', '--strong', '-mrelease',
41 '-cdartdevc', '-rchrome', '-ax64', '--report', '--time', '--checked', 41 '-cdartdevc', '-rchrome', '-ax64', '--report', '--time', '--checked',
42 'language_2', 'corelib_2', 'language_strong']) 42 '--progress=buildbot'] + TARGETS )
43 else: 43 else:
44 info = bot.BuildInfo('dartdevc', 'chrome', 'release', system, 44 info = bot.BuildInfo('dartdevc', 'chrome', 'release', system,
45 arch='x64', checked=True) 45 arch='x64', checked=True)
46 bot.RunTest('dartdevc', info, TARGETS, flags=FLAGS) 46 bot.RunTest('dartdevc', info, TARGETS, flags=FLAGS)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698