Changeset 55663 in webkit


Ignore:
Timestamp:
Mar 8, 2010 7:07:21 AM (14 years ago)
Author:
kov@webkit.org
Message:

2010-03-08 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

No review, rolling out r55662.
http://trac.webkit.org/changeset/55662
https://bugs.webkit.org/show_bug.cgi?id=35863

Need to be coordinated with bots setup

  • http/conf/apache2-debian-httpd.conf:

2010-03-08 Gustavo Noronha Silva <Gustavo Noronha Silva>

No review, rolling out r55662.
http://trac.webkit.org/changeset/55662
https://bugs.webkit.org/show_bug.cgi?id=35863

Need to be coordinated with bots setup

  • Scripts/run-webkit-tests:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r55662 r55663  
     12010-03-08  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
     2
     3        No review, rolling out r55662.
     4        http://trac.webkit.org/changeset/55662
     5        https://bugs.webkit.org/show_bug.cgi?id=35863
     6
     7        Need to be coordinated with bots setup
     8
     9        * http/conf/apache2-debian-httpd.conf:
     10
    1112010-03-08  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
    212
  • trunk/LayoutTests/http/conf/apache2-debian-httpd.conf

    r55662 r55663  
    160160# Configured from the httpd command line for WebKit layout tests.
    161161# Port 8443 is hard-coded as it is needed for the HTTPS configuration later on.
    162 # The IPV6 address is needed because Debian resolves ipv6 address
    163 # first, and libsoup may only try the first address.
    164162#
    165163#Listen 3000
    166164Listen 127.0.0.1:8080
    167165Listen 127.0.0.1:8443
    168 Listen [::1]:8443
    169166
    170167#
     
    679676    SSLEngine On
    680677</VirtualHost>
    681 
    682 <VirtualHost [::1]:8443>
    683     ServerName 127.0.0.1
    684     SSLEngine On
    685 </VirtualHost>
  • trunk/WebKitTools/ChangeLog

    r55662 r55663  
     12010-03-08  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        No review, rolling out r55662.
     4        http://trac.webkit.org/changeset/55662
     5        https://bugs.webkit.org/show_bug.cgi?id=35863
     6
     7        Need to be coordinated with bots setup
     8
     9        * Scripts/run-webkit-tests:
     10
    1112010-03-08  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
    212
  • trunk/WebKitTools/Scripts/run-webkit-tests

    r55662 r55663  
    14041404    );
    14051405
    1406     # Debian, and Debian-based distributions resolve IPV6 addresses first,
    1407     # and libsoup only tries the first address given to it
    1408     if (isDebianBased()) {
    1409         my $listenIPV6 = "[::1]:$httpdPort";
    1410         push(@args, "-C");
    1411         push(@args, "Listen $listenIPV6");
    1412     }
    1413 
    14141406    my @defaultArgs = getDefaultConfigForTestDirectory($testDirectory);
    14151407    @args = (@defaultArgs, @args);
Note: See TracChangeset for help on using the changeset viewer.