| Index: scripts/slave/recipes/chromium.py
|
| diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
|
| index a111fb3627596cb01535f5c43bbb6c929a983007..01aa51ea4ae41217a8fa93b44021916b3d3b8ae4 100644
|
| --- a/scripts/slave/recipes/chromium.py
|
| +++ b/scripts/slave/recipes/chromium.py
|
| @@ -58,7 +58,9 @@ def GenTests(api):
|
| api.properties.generic(mastername=mastername,
|
| buildername=buildername,
|
| parent_buildername=bot_config.get(
|
| - 'parent_buildername')) +
|
| + 'parent_buildername'),
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform(bot_config['testing']['platform'],
|
| bot_config.get(
|
| 'chromium_config_kwargs', {}).get('TARGET_BITS', 64))
|
| @@ -80,7 +82,9 @@ def GenTests(api):
|
| api.test('dynamic_gtest') +
|
| api.properties.generic(mastername='chromium.linux',
|
| buildername='Linux Tests',
|
| - parent_buildername='Linux Builder') +
|
| + parent_buildername='Linux Builder',
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('linux', 64) +
|
| api.override_step_data('read test spec', api.json.output({
|
| 'Linux Tests': {
|
| @@ -96,7 +100,9 @@ def GenTests(api):
|
| api.test('dynamic_gtest_win') +
|
| api.properties.generic(mastername='chromium.win',
|
| buildername='Win7 Tests (1)',
|
| - parent_buildername='Win Builder') +
|
| + parent_buildername='Win Builder',
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('win', 64) +
|
| api.override_step_data('read test spec', api.json.output({
|
| 'Win7 Tests (1)': {
|
| @@ -113,7 +119,9 @@ def GenTests(api):
|
| api.test('dynamic_gtest_memory') +
|
| api.properties.generic(mastername='chromium.memory',
|
| buildername='Linux ASan Tests (sandboxed)',
|
| - parent_buildername='Linux ASan LSan Builder') +
|
| + parent_buildername='Linux ASan LSan Builder',
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('linux', 64) +
|
| api.override_step_data('read test spec', api.json.output({
|
| 'Linux ASan Tests (sandboxed)': {
|
| @@ -129,7 +137,9 @@ def GenTests(api):
|
| api.test('dynamic_gtest_memory_builder') +
|
| api.properties.generic(mastername='chromium.memory',
|
| buildername='Linux ASan LSan Builder',
|
| - revision='123456') +
|
| + revision='123456',
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('linux', 64) +
|
| # The builder should build 'browser_tests', because there exists a child
|
| # tester that uses that test.
|
| @@ -145,7 +155,9 @@ def GenTests(api):
|
| yield (
|
| api.test('arm') +
|
| api.properties.generic(mastername='chromium.fyi',
|
| - buildername='Linux ARM Cross-Compile') +
|
| + buildername='Linux ARM Cross-Compile',
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('linux', 64) +
|
| api.override_step_data('read test spec', api.json.output({
|
| 'Linux ARM Cross-Compile': {
|
| @@ -163,7 +175,9 @@ def GenTests(api):
|
| yield (
|
| api.test('findbugs_failure') +
|
| api.properties.generic(mastername='chromium.linux',
|
| - buildername='Android Builder (dbg)') +
|
| + buildername='Android Builder (dbg)',
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('linux', 32) +
|
| api.step_data('findbugs', retcode=1)
|
| )
|
| @@ -172,7 +186,9 @@ def GenTests(api):
|
| api.test('msan') +
|
| api.properties.generic(mastername='chromium.fyi',
|
| buildername='Linux MSan Tests',
|
| - parent_buildername='Chromium Linux MSan Builder') +
|
| + parent_buildername='Chromium Linux MSan Builder',
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('linux', 64) +
|
| api.override_step_data('read test spec', api.json.output({
|
| 'Linux MSan Tests': {
|
| @@ -187,7 +203,9 @@ def GenTests(api):
|
| api.properties.generic(mastername='chromium.linux',
|
| buildername='Linux Tests',
|
| parent_buildername='Linux Builder',
|
| - buildnumber=0) +
|
| + buildnumber=0,
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('linux', 64) +
|
| api.override_step_data('read test spec', api.json.output({
|
| 'Linux Tests': {
|
| @@ -203,7 +221,9 @@ def GenTests(api):
|
| api.test('buildspec_compile_targets') +
|
| api.properties.generic(mastername='chromium.linux',
|
| buildername='Linux Builder (dbg)',
|
| - buildnumber=1) +
|
| + buildnumber=1,
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('linux', 64) +
|
| api.override_step_data('read test spec', api.json.output({
|
| "Linux Tests (dbg)(1)": {
|
| @@ -232,7 +252,9 @@ def GenTests(api):
|
| api.test('one_failure_keeps_going_dynamic_tests') +
|
| api.properties.generic(mastername='chromium.linux',
|
| buildername='Linux Tests',
|
| - parent_buildername='Linux Builder') +
|
| + parent_buildername='Linux Builder',
|
| + got_revision='250000',
|
| + got_webkit_revision='150000') +
|
| api.platform('linux', 64) +
|
| api.override_step_data('read test spec', api.json.output({
|
| 'Linux Tests': {
|
|
|