Home | History | Annotate | Download | only in checkout

Lines Matching full:checkout

31 from webkitpy.common.checkout.baselineoptimizer import BaselineOptimizer
32 from webkitpy.common.checkout.scm.scm_mock import MockSCM
64 host = MockHost(scm=ExcludingMockSCM(['/mock-checkout/third_party/WebKit/LayoutTests/platform/mac/another/test-expected.txt']))
65 host.filesystem.write_text_file('/mock-checkout/third_party/WebKit/LayoutTests/VirtualTestSuites', '[]')
66 host.filesystem.write_binary_file('/mock-checkout/third_party/WebKit/LayoutTests/platform/win/another/test-expected.txt', 'result A')
67 host.filesystem.write_binary_file('/mock-checkout/third_party/WebKit/LayoutTests/platform/mac/another/test-expected.txt', 'result A')
68 host.filesystem.write_binary_file('/mock-checkout/third_party/WebKit/LayoutTests/another/test-expected.txt', 'result B')
71 '/mock-checkout/third_party/WebKit/LayoutTests/platform/win': 'aaa',
72 '/mock-checkout/third_party/WebKit/LayoutTests/platform/mac': 'aaa',
73 '/mock-checkout/third_party/WebKit/LayoutTests': 'bbb',
75 '/mock-checkout/third_party/WebKit/LayoutTests': 'aaa',
77 self.assertEqual(host.filesystem.read_binary_file('/mock-checkout/third_party/WebKit/LayoutTests/another/test-expected.txt'), 'result A')
80 host = MockHost(scm=ExcludingMockSCM(['/mock-checkout/third_party/WebKit/LayoutTests/platform/mac/another/test-expected.txt']))
81 host.filesystem.write_text_file('/mock-checkout/third_party/WebKit/LayoutTests/VirtualTestSuites', '[]')
82 host.filesystem.write_binary_file('/mock-checkout/third_party/WebKit/LayoutTests/platform/win/another/test-expected.txt', 'result A')
83 host.filesystem.write_binary_file('/mock-checkout/third_party/WebKit/LayoutTests/platform/mac/another/test-expected.txt', 'result A')
84 host.filesystem.write_binary_file('/mock-checkout/third_party/WebKit/LayoutTests/another/test-expected.txt', 'result B')
87 '/mock-checkout/third_party/WebKit/LayoutTests/platform/win': 'aaa',
88 '/mock-checkout/third_party/WebKit/LayoutTests/platform/mac': 'aaa',
89 '/mock-checkout/third_party/WebKit/LayoutTests': 'bbb',
91 '/mock-checkout/third_party/WebKit/LayoutTests/platform/linux': 'bbb',
92 '/mock-checkout/third_party/WebKit/LayoutTests': 'aaa',
94 self.assertEqual(host.filesystem.read_binary_file('/mock-checkout/third_party/WebKit/LayoutTests/another/test-expected.txt'), 'result A')
97 '/mock-checkout/third_party/WebKit/LayoutTests/platform/win/another/test-expected.txt',
101 '/mock-checkout/third_party/WebKit/LayoutTests/another/test-expected.txt',
102 '/mock-checkout/third_party/WebKit/LayoutTests/platform/linux/another/test-expected.txt',
256 '/mock-checkout/third_party/WebKit/LayoutTests/virtual/gpu/fast/canvas/mock-baseline-expected.txt',
257 '/mock-checkout/third_party/WebKit/LayoutTests/platform/mac/fast/canvas/mock-baseline-expected.txt',
258 '/mock-checkout/third_party/WebKit/LayoutTests/platform/win/fast/canvas/mock-baseline-expected.txt',
272 '/mock-checkout/third_party/WebKit/LayoutTests/platform/mac/fast/canvas/mock-baseline-expected.txt',
273 '/mock-checkout/third_party/WebKit/LayoutTests/platform/win/fast/canvas/mock-baseline-expected.txt',
275 host=MockHost(scm=ExcludingMockSCM(['/mock-checkout/third_party/WebKit/LayoutTests/virtual/gpu/fast/canvas/mock-baseline-expected.txt'])))