Changeset 130309 in webkit
- Timestamp:
- Oct 3, 2012, 12:02:43 PM (13 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r130306 r130309 1 2012-10-03 Roger Fong <roger_fong@apple.com> 2 3 Unreviewed. Adding sys.platform check to skip a failing assert on the Apple Windows platform. 4 https://bugs.webkit.org/show_bug.cgi?id=98288 5 6 * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py: 7 (ChromiumAndroidDriverTest.test_command_from_driver_input): 8 1 9 2012-10-03 Ojan Vafai <ojan@chromium.org> 2 10 -
trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py
r129226 r130309 31 31 import time 32 32 import unittest 33 import sys 33 34 34 35 from webkitpy.common.system import executive_mock … … 245 246 driver_input = driver.DriverInput('foo/bar/test.html', 10, 'checksum', True) 246 247 expected_command = "/data/local/tmp/third_party/WebKit/LayoutTests/foo/bar/test.html'--pixel-test'checksum\n" 247 self.assertEquals(self.driver._command_from_driver_input(driver_input), expected_command) 248 if (sys.platform != "cygwin"): 249 self.assertEquals(self.driver._command_from_driver_input(driver_input), expected_command) 248 250 249 251 driver_input = driver.DriverInput('http/tests/foo/bar/test.html', 10, 'checksum', True)
Note:
See TracChangeset
for help on using the changeset viewer.