Title: [113210] trunk/Tools
Revision
113210
Author
ph...@webkit.org
Date
2012-04-04 10:29:23 -0700 (Wed, 04 Apr 2012)

Log Message

gtk_unittest.GtkPortTest.test_get_crash_log failing on windows
https://bugs.webkit.org/show_bug.cgi?id=83176

Reviewed by Tony Chang.

* Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
(test_get_crash_log): Skip the test on non-linux platforms.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (113209 => 113210)


--- trunk/Tools/ChangeLog	2012-04-04 17:17:32 UTC (rev 113209)
+++ trunk/Tools/ChangeLog	2012-04-04 17:29:23 UTC (rev 113210)
@@ -1,3 +1,13 @@
+2012-04-04  Philippe Normand  <pnorm...@igalia.com>
+
+        gtk_unittest.GtkPortTest.test_get_crash_log failing on windows
+        https://bugs.webkit.org/show_bug.cgi?id=83176
+
+        Reviewed by Tony Chang.
+
+        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
+        (test_get_crash_log): Skip the test on non-linux platforms.
+
 2012-04-04  Sudarsana Nagineni  <sudarsana.nagin...@linux.intel.com>
 
         [EFL] DRT support for computedStyleIncludingVisitedInfo

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py (113209 => 113210)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py	2012-04-04 17:17:32 UTC (rev 113209)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py	2012-04-04 17:29:23 UTC (rev 113210)
@@ -69,6 +69,8 @@
         return (self._mock_crash_log, [])
 
     def test_get_crash_log(self):
+        if not sys.platform.startswith("linux"):
+            return
         port = self.make_port()
         port._get_gdb_output = self._mock_gdb_output
         log = port._get_crash_log("DumpRenderTree", 28529, "", "")
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to