Francois Gouget : wininet/tests: Tell the user which ftp server we' re using for the tests so he can try to connect to it manually in case of trouble .

Alexandre Julliard julliard at wine.codeweavers.com
Tue Feb 20 14:19:07 CST 2007


Module: wine
Branch: master
Commit: eb2bf541f2859c5512759923ae587d2ffe9b2ed7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=eb2bf541f2859c5512759923ae587d2ffe9b2ed7

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Feb 20 15:56:50 2007 +0100

wininet/tests: Tell the user which ftp server we're using for the tests so he can try to connect to it manually in case of trouble.

---

 dlls/wininet/tests/ftp.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dlls/wininet/tests/ftp.c b/dlls/wininet/tests/ftp.c
index 770fdeb..4afaddd 100644
--- a/dlls/wininet/tests/ftp.c
+++ b/dlls/wininet/tests/ftp.c
@@ -126,7 +126,7 @@ static void test_createdir(void)
     hFtp = InternetConnect(hInternet, "ftp.winehq.org", INTERNET_DEFAULT_FTP_PORT, "anonymous", "IEUser@", INTERNET_SERVICE_FTP, 0, 0);
     if(!hFtp)
     {
-        skip("No ftp connection could be made\n");
+        skip("No ftp connection could be made to ftp.winehq.org\n");
         InternetCloseHandle(hInternet);
         return;
     }
@@ -187,7 +187,7 @@ static void test_deletefile(void)
     hFtp = InternetConnect(hInternet, "ftp.winehq.org", INTERNET_DEFAULT_FTP_PORT, "anonymous", "IEUser@", INTERNET_SERVICE_FTP, 0, 0);
     if(!hFtp)
     {
-        skip("No ftp connection could be made\n");
+        skip("No ftp connection could be made to ftp.winehq.org\n");
         InternetCloseHandle(hInternet);
         return;
     }
@@ -263,7 +263,7 @@ static void test_getfile(void)
     hFtp = InternetConnect(hInternet, "ftp.winehq.org", INTERNET_DEFAULT_FTP_PORT, "anonymous", "IEUser@", INTERNET_SERVICE_FTP, 0, 0);
     if(!hFtp)
     {
-        skip("No ftp connection could be made\n");
+        skip("No ftp connection could be made to ftp.winehq.org\n");
         InternetCloseHandle(hInternet);
         return;
     }
@@ -417,7 +417,7 @@ static void test_openfile(void)
     hFtp = InternetConnect(hInternet, "ftp.winehq.org", INTERNET_DEFAULT_FTP_PORT, "anonymous", "IEUser@", INTERNET_SERVICE_FTP, 0, 0);
     if(!hFtp)
     {
-        skip("No ftp connection could be made\n");
+        skip("No ftp connection could be made to ftp.winehq.org\n");
         InternetCloseHandle(hInternet);
         return;
     }
@@ -543,7 +543,7 @@ static void test_putfile(void)
     hFtp = InternetConnect(hInternet, "ftp.winehq.org", INTERNET_DEFAULT_FTP_PORT, "anonymous", "IEUser@", INTERNET_SERVICE_FTP, 0, 0);
     if(!hFtp)
     {
-        skip("No ftp connection could be made\n");
+        skip("No ftp connection could be made to ftp.winehq.org\n");
         InternetCloseHandle(hInternet);
         return;
     }
@@ -640,7 +640,7 @@ static void test_removedir(void)
     hFtp = InternetConnect(hInternet, "ftp.winehq.org", INTERNET_DEFAULT_FTP_PORT, "anonymous", "IEUser@", INTERNET_SERVICE_FTP, 0, 0);
     if(!hFtp)
     {
-        skip("No ftp connection could be made\n");
+        skip("No ftp connection could be made to ftp.winehq.org\n");
         InternetCloseHandle(hInternet);
         return;
     }
@@ -709,7 +709,7 @@ static void test_renamefile(void)
     hFtp = InternetConnect(hInternet, "ftp.winehq.org", INTERNET_DEFAULT_FTP_PORT, "anonymous", "IEUser@", INTERNET_SERVICE_FTP, 0, 0);
     if(!hFtp)
     {
-        skip("No ftp connection could be made\n");
+        skip("No ftp connection could be made to ftp.winehq.org\n");
         InternetCloseHandle(hInternet);
         return;
     }




More information about the wine-cvs mailing list