Tools/ChangeLog

 12012-01-09 Dirk Pranke <dpranke@chromium.org>
 2
 3 webkitpy.layout_tests.port.mock_drt_unittest.MockChromiumDRTTest has been failing on cr-win
 4 https://bugs.webkit.org/show_bug.cgi?id=75884
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 Fix regression introduced (revealed?) in r104340. Chromium file
 9 url syntax is different on win32 and the test results weren't
 10 expecting that.
 11
 12 * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
 13 (MockChromiumDRTTest.test_pixeltest__fails):
 14
1152012-01-06 Adam Roben <aroben@apple.com>
216
317 Print an error message when NRWT can't run Apache

Tools/Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py

@@class MockChromiumDRTTest(MockDRTTest):
236236
237237 def test_pixeltest__fails(self):
238238 host = MockHost()
 239 if sys.platform == 'win32':
 240 url = '#URL:file:////test.checkout/LayoutTests/failures/expected/checksum.html'
 241 else:
 242 url = '#URL:file:///test.checkout/LayoutTests/failures/expected/checksum.html'
239243 self.assertTest('failures/expected/checksum.html', pixel_tests=True,
240244 expected_checksum='wrong-checksum',
241  drt_output=['#URL:file:///test.checkout/LayoutTests/failures/expected/checksum.html\n',
 245
 246 drt_output=[url + '\n',
242247 '#MD5:checksum-checksum\n',
243248 'checksum-txt',
244249 '\n',