+2011-02-20 Dirk Pranke <dpranke@chromium.org>
+
+ Reviewed by Ojan Vafai.
+
+ test-webkitpy: stop skipping a bunch of tests on win32
+ https://bugs.webkit.org/show_bug.cgi?id=54788
+
+ * Scripts/webkitpy/common/net/testoutputset_unittest.py:
+ * Scripts/webkitpy/test/main.py:
+
2011-02-20 Dirk Pranke <dpranke@chromium.org>
Reviewed by Ojan Vafai.
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+import sys
+
from webkitpy.common.system.zip_mock import MockZip
import testoutputset
import unittest
self.assertEquals(2, len(b.outputs_for('fast/dom/test')))
def test_can_infer_platform_from_path_if_none_provided(self):
+ # FIXME: unclear what the right behavior on win32 is.
+ # https://bugs.webkit.org/show_bug.cgi?id=54525.
+ if sys.platform == 'win32':
+ return
+
zip = MockZip()
zip.insert('platform/win/some-test-expected.png', '<image data>')
zip.insert('platform/win/some-test-expected.checksum', 'abc123')
# FIXME: Remove this once https://bugs.webkit.org/show_bug.cgi?id=54526 is resolved.
if any([module_path.startswith(package) for package in [
'webkitpy.tool',
- 'webkitpy.style',
- 'webkitpy.common.net',
'webkitpy.common.checkout',
'webkitpy.common.config',
]]):
return False
return module_path not in [
- # FIXME: Remove this when https://bugs.webkit.org/show_bug.cgi?id=54525 is resolved.
- 'webkitpy.common.net.testoutputset_unittest',
-
# FIXME: This file also requires common.checkout to work
'webkitpy.layout_tests.deduplicate_tests_unittest',
-
- 'webkitpy.common.prettypatch_unittest',
- 'webkitpy.layout_tests.update_webgl_conformance_tests_unittest',
- 'webkitpy.layout_tests.port.mac_unittest',
- 'webkitpy.layout_tests.port.chromium_unittest',
- 'webkitpy.layout_tests.port.mock_drt_unittest',
- 'webkitpy.layout_tests.port.config_unittest',
]
def run_tests(self, sys_argv, external_package_paths=None):