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

Unified Diff: tools/bots/ddc_tests.py

Issue 2991343004: Change ddc bots to use Chrome (Closed)
Patch Set: Use xvfb on linux 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/ddc_tests.py
diff --git a/tools/bots/ddc_tests.py b/tools/bots/ddc_tests.py
index 7282bd74581796dda07b2a446d2f7ce89cf63c52..54f989a232e85bb440577bfad2afb4e869747e61 100644
--- a/tools/bots/ddc_tests.py
+++ b/tools/bots/ddc_tests.py
@@ -35,6 +35,12 @@ if __name__ == '__main__':
with bot.BuildStep('Run tests'):
(bot_name, _) = bot.GetBotName()
system = bot_utils.GetSystemFromName(bot_name)
- info = bot.BuildInfo('dartdevc', 'drt', 'release', system,
- arch='x64', checked=True)
- bot.RunTest('dartdevc', info, TARGETS, flags=FLAGS)
+ if system == 'linux':
+ bot.RunProcess([
+ 'xvfb-run', sys.executable, './tools/test.py', '--strong', '-mrelease',
+ '-cdartdevc', '-rchrome', '-ax64', '--report', '--time', '--checked',
+ 'language_2', 'corelib_2', 'language_strong'])
+ else:
+ info = bot.BuildInfo('dartdevc', 'chrome', 'release', system,
+ arch='x64', checked=True)
+ bot.RunTest('dartdevc', info, TARGETS, flags=FLAGS)
« 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