| Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
|
| index 56ec066b44240e5358c9ad6e4c5e343c67053ff5..a01849505d6596040df1996af137306394e2674a 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
|
| @@ -272,11 +272,25 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
|
| self.assertEqual(
|
| self.tool.executive.calls,
|
| [
|
| - [['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt',
|
| - '--builder', 'MOCK Try Win', '--test', 'fast/dom/prototype-taco.html']],
|
| - [['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt',
|
| - '--builder', 'MOCK Try Win', '--test', 'fast/dom/prototype-taco.html', '--build-number', '5000']],
|
| - [['python', 'echo', 'optimize-baselines', '--suffixes', 'txt', 'fast/dom/prototype-taco.html']]
|
| + [[
|
| + 'python', 'echo', 'copy-existing-baselines-internal',
|
| + '--test', 'fast/dom/prototype-taco.html',
|
| + '--suffixes', 'txt',
|
| + '--port-name', 'test-win-win7',
|
| + ]],
|
| + [[
|
| + 'python', 'echo', 'rebaseline-test-internal',
|
| + '--test', 'fast/dom/prototype-taco.html',
|
| + '--suffixes', 'txt',
|
| + '--port-name', 'test-win-win7',
|
| + '--builder', 'MOCK Try Win',
|
| + '--build-number', '5000',
|
| + ]],
|
| + [[
|
| + 'python', 'echo', 'optimize-baselines',
|
| + '--suffixes', 'txt',
|
| + 'fast/dom/prototype-taco.html',
|
| + ]]
|
| ])
|
|
|
| def test_trigger_builds(self):
|
|
|