Author: chrisz
Date: Sun Feb 1 09:53:18 2009
New Revision: 7783
Modified:
Webware/trunk/WebKit/Tests/twill/Admin.twill
Webware/trunk/WebKit/Tests/twill/Docs.twill
Webware/trunk/WebKit/Tests/twill/KidKit.twill
Webware/trunk/WebKit/Tests/twill/MKBrowser.twill
Webware/trunk/WebKit/Tests/twill/PSP.twill
Webware/trunk/WebKit/Tests/twill/Testing.twill
Webware/trunk/WebKit/Tests/twill/WebKit.twill
Log:
Use 127.0.0.1 instead of localhost in twill scripts to make sure IPv4 is used, since the Python builtin webserver uses IPv4 by default, but Python by default connects with IPv6 first under Windows, which causes the scripts to run very slowly.
Modified: Webware/trunk/WebKit/Tests/twill/Admin.twill
==============================================================================
--- Webware/trunk/WebKit/Tests/twill/Admin.twill (original)
+++ Webware/trunk/WebKit/Tests/twill/Admin.twill Sun Feb 1 09:53:18 2009
@@ -11,7 +11,7 @@
config use_BeautifulSoup 0
config allow_parse_errors 0
-go http://localhost:8080
+go http://127.0.0.1:8080
follow Admin
url Admin
code 200
Modified: Webware/trunk/WebKit/Tests/twill/Docs.twill
==============================================================================
--- Webware/trunk/WebKit/Tests/twill/Docs.twill (original)
+++ Webware/trunk/WebKit/Tests/twill/Docs.twill Sun Feb 1 09:53:18 2009
@@ -11,7 +11,7 @@
config use_BeautifulSoup 0
config allow_parse_errors 0
-go http://localhost:8080
+go http://127.0.0.1:8080
follow Docs
url Docs
code 200
Modified: Webware/trunk/WebKit/Tests/twill/KidKit.twill
==============================================================================
--- Webware/trunk/WebKit/Tests/twill/KidKit.twill (original)
+++ Webware/trunk/WebKit/Tests/twill/KidKit.twill Sun Feb 1 09:53:18 2009
@@ -10,7 +10,7 @@
config use_BeautifulSoup 0
config allow_parse_errors 0
-go http://localhost:8080
+go http://127.0.0.1:8080
follow KidKit
url KidKit
title Welcome
Modified: Webware/trunk/WebKit/Tests/twill/MKBrowser.twill
==============================================================================
--- Webware/trunk/WebKit/Tests/twill/MKBrowser.twill (original)
+++ Webware/trunk/WebKit/Tests/twill/MKBrowser.twill Sun Feb 1 09:53:18 2009
@@ -10,7 +10,7 @@
config use_BeautifulSoup 0
config allow_parse_errors 0
-go http://localhost:8080
+go http://127.0.0.1:8080
follow MKBrowser
url MKBrowser
title SelectModel
Modified: Webware/trunk/WebKit/Tests/twill/PSP.twill
==============================================================================
--- Webware/trunk/WebKit/Tests/twill/PSP.twill (original)
+++ Webware/trunk/WebKit/Tests/twill/PSP.twill Sun Feb 1 09:53:18 2009
@@ -10,7 +10,7 @@
config use_BeautifulSoup 0
config allow_parse_errors 0
-go http://localhost:8080
+go http://127.0.0.1:8080
follow PSP
url PSP
title "PSP Hello"
Modified: Webware/trunk/WebKit/Tests/twill/Testing.twill
==============================================================================
--- Webware/trunk/WebKit/Tests/twill/Testing.twill (original)
+++ Webware/trunk/WebKit/Tests/twill/Testing.twill Sun Feb 1 09:53:18 2009
@@ -10,7 +10,7 @@
config use_BeautifulSoup 0
config allow_parse_errors 0
-go http://localhost:8080
+go http://127.0.0.1:8080
find "Welcome to WebKit"
go Welcome
Modified: Webware/trunk/WebKit/Tests/twill/WebKit.twill
==============================================================================
--- Webware/trunk/WebKit/Tests/twill/WebKit.twill (original)
+++ Webware/trunk/WebKit/Tests/twill/WebKit.twill Sun Feb 1 09:53:18 2009
@@ -12,7 +12,7 @@
# Start page
-go http://localhost:8080
+go http://127.0.0.1:8080
code 200
title Welcome
find '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"'
|