| 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)
|
|
|