| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import unittest | 5 import unittest |
| 6 | 6 |
| 7 from webkitpy.common.host_mock import MockHost | 7 from webkitpy.common.host_mock import MockHost |
| 8 from webkitpy.common.system.executive_mock import MockExecutive | 8 from webkitpy.common.system.executive_mock import MockExecutive |
| 9 from webkitpy.common.system.filesystem_mock import MockFileSystem | 9 from webkitpy.common.system.filesystem_mock import MockFileSystem |
| 10 from webkitpy.w3c.local_wpt import LocalWPT | 10 from webkitpy.w3c.local_wpt import LocalWPT |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 ['git', 'clone', 'https://chromium.googlesource.com/external/w3c/web
-platform-tests.git', '/tmp/wpt'], | 89 ['git', 'clone', 'https://chromium.googlesource.com/external/w3c/web
-platform-tests.git', '/tmp/wpt'], |
| 90 ['git', 'remote'], | 90 ['git', 'remote'], |
| 91 ['git', 'remote', 'add', 'github', 'git@github.com:w3c/web-platform-
tests.git'], | 91 ['git', 'remote', 'add', 'github', 'git@github.com:w3c/web-platform-
tests.git'], |
| 92 ['git', 'reset', '--hard', 'HEAD'], | 92 ['git', 'reset', '--hard', 'HEAD'], |
| 93 ['git', 'clean', '-fdx'], | 93 ['git', 'clean', '-fdx'], |
| 94 ['git', 'checkout', 'origin/master'], | 94 ['git', 'checkout', 'origin/master'], |
| 95 ['git', 'branch', '-a'], | 95 ['git', 'branch', '-a'], |
| 96 ['git', 'branch', '-a'], | 96 ['git', 'branch', '-a'], |
| 97 ['git', 'checkout', '-b', 'chromium-export-try'], | 97 ['git', 'checkout', '-b', 'chromium-export-try'], |
| 98 ['git', 'apply', '-'], | 98 ['git', 'apply', '-'], |
| 99 ['git', 'add', '.'], |
| 99 ['git', 'commit', '--author', 'author', '-am', 'message'], | 100 ['git', 'commit', '--author', 'author', '-am', 'message'], |
| 100 ['git', 'push', 'github', 'chromium-export-try']]) | 101 ['git', 'push', 'github', 'chromium-export-try']]) |
| OLD | NEW |