Title: [89421] trunk/Tools
Revision
89421
Author
[email protected]
Date
2011-06-22 04:22:16 -0700 (Wed, 22 Jun 2011)

Log Message

2011-06-22  Sheriff Bot  <[email protected]>

        Unreviewed, rolling out r89414.
        http://trac.webkit.org/changeset/89414
        https://bugs.webkit.org/show_bug.cgi?id=63130

        It broke webkitpy tests (Requested by Ossy on #webkit).

        * Scripts/webkitpy/layout_tests/port/base.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (89420 => 89421)


--- trunk/Tools/ChangeLog	2011-06-22 11:15:11 UTC (rev 89420)
+++ trunk/Tools/ChangeLog	2011-06-22 11:22:16 UTC (rev 89421)
@@ -1,3 +1,13 @@
+2011-06-22  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r89414.
+        http://trac.webkit.org/changeset/89414
+        https://bugs.webkit.org/show_bug.cgi?id=63130
+
+        It broke webkitpy tests (Requested by Ossy on #webkit).
+
+        * Scripts/webkitpy/layout_tests/port/base.py:
+
 2011-06-22  Kristóf Kosztyó  <[email protected]>
 
         Reviewed by Dirk Pranke.

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py (89420 => 89421)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2011-06-22 11:15:11 UTC (rev 89420)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/base.py	2011-06-22 11:22:16 UTC (rev 89421)
@@ -188,8 +188,6 @@
         This step can be skipped with --nocheck-sys-deps.
 
         Returns whether the system is properly configured."""
-        if needs_http:
-            return self.check_httpd()
         return True
 
     def check_image_diff(self, override_step=None, logging=True):
@@ -229,18 +227,6 @@
 
         return True
 
-    def check_httpd(self):
-        if self.get_option('use_apache'):
-            path = self._path_to_apache()
-        else:
-            path = self._path_to_lighttpd()
-
-        try:
-            return self._executive.run_command([path, "-v"], return_exit_code=True) == 0
-        except OSError, e:
-            _log.error("No httpd found. Cannot run http tests.")
-            return False
-
     def compare_text(self, expected_text, actual_text):
         """Return whether or not the two strings are *not* equal. This
         routine is used to diff text output.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to