Changeset 55662 in webkit


Ignore:
Timestamp:
Mar 8, 2010 6:23:29 AM (14 years ago)
Author:
kov@webkit.org
Message:

LayoutTests

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

Reviewed by Holger Freyther.

[GTK] Tests fail when running with ipv6 addresses available, on Debian systems
https://bugs.webkit.org/show_bug.cgi?id=35863

Also listen for SSL requests on the ipv6 address.

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

WebKitTools

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

Reviewed by Holger Freyther.

[GTK] Tests fail when running with ipv6 addresses available, on Debian systems
https://bugs.webkit.org/show_bug.cgi?id=35863

If running on a Debian-based system, also listen on the ipv6 address.

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r55661 r55662  
     12010-03-08  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
     2
     3        Reviewed by Holger Freyther.
     4
     5        [GTK] Tests fail when running with ipv6 addresses available, on Debian systems
     6        https://bugs.webkit.org/show_bug.cgi?id=35863
     7
     8        Also listen for SSL requests on the ipv6 address.
     9
     10        * http/conf/apache2-debian-httpd.conf:
     11
    1122010-03-08  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
    213
  • trunk/LayoutTests/http/conf/apache2-debian-httpd.conf

    r39186 r55662  
    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.
    162164#
    163165#Listen 3000
    164166Listen 127.0.0.1:8080
    165167Listen 127.0.0.1:8443
     168Listen [::1]:8443
    166169
    167170#
     
    676679    SSLEngine On
    677680</VirtualHost>
     681
     682<VirtualHost [::1]:8443>
     683    ServerName 127.0.0.1
     684    SSLEngine On
     685</VirtualHost>
  • trunk/WebKitTools/ChangeLog

    r55658 r55662  
     12010-03-08  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
     2
     3        Reviewed by Holger Freyther.
     4
     5        [GTK] Tests fail when running with ipv6 addresses available, on Debian systems
     6        https://bugs.webkit.org/show_bug.cgi?id=35863
     7
     8        If running on a Debian-based system, also listen on the ipv6 address.
     9
     10        * Scripts/run-webkit-tests:
     11
    1122010-03-08  Holger Hans Peter Freyther  <zecke@selfish.org>
    213
  • trunk/WebKitTools/Scripts/run-webkit-tests

    r55558 r55662  
    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
    14061414    my @defaultArgs = getDefaultConfigForTestDirectory($testDirectory);
    14071415    @args = (@defaultArgs, @args);
Note: See TracChangeset for help on using the changeset viewer.