Title: [160206] trunk/Tools
Revision
160206
Author
[email protected]
Date
2013-12-05 17:50:15 -0800 (Thu, 05 Dec 2013)

Log Message

Disable WebKit2 webkitpy unittests on Windows
https://bugs.webkit.org/show_bug.cgi?id=125318

Reviewed by Ryosuke Niwa.

* Scripts/webkitpy/test/main.py:
(main):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (160205 => 160206)


--- trunk/Tools/ChangeLog	2013-12-06 01:47:19 UTC (rev 160205)
+++ trunk/Tools/ChangeLog	2013-12-06 01:50:15 UTC (rev 160206)
@@ -1,3 +1,13 @@
+2013-12-05  Csaba Osztrogonác  <[email protected]>
+
+        Disable WebKit2 webkitpy unittests on Windows
+        https://bugs.webkit.org/show_bug.cgi?id=125318
+
+        Reviewed by Ryosuke Niwa.
+
+        * Scripts/webkitpy/test/main.py:
+        (main):
+
 2013-12-05  Anders Carlsson  <[email protected]>
 
         Tweak WeakObjCPtr

Modified: trunk/Tools/Scripts/webkitpy/test/main.py (160205 => 160206)


--- trunk/Tools/Scripts/webkitpy/test/main.py	2013-12-06 01:47:19 UTC (rev 160205)
+++ trunk/Tools/Scripts/webkitpy/test/main.py	2013-12-06 01:50:15 UTC (rev 160206)
@@ -47,8 +47,11 @@
 
     tester = Tester()
     tester.add_tree(os.path.join(webkit_root, 'Tools', 'Scripts'), 'webkitpy')
-    tester.add_tree(os.path.join(webkit_root, 'Source', 'WebKit2', 'Scripts'), 'webkit2')
 
+    # There is no WebKit2 on Windows, so we don't need to run WebKit2 unittests on it.
+    if sys.platform != 'win32':
+        tester.add_tree(os.path.join(webkit_root, 'Source', 'WebKit2', 'Scripts'), 'webkit2')
+
     tester.skip(('webkitpy.common.checkout.scm.scm_unittest',), 'are really, really, slow', 31818)
     if sys.platform == 'win32':
         tester.skip(('webkitpy.common.checkout', 'webkitpy.common.config', 'webkitpy.tool'), 'fail horribly on win32', 54526)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to