Francois Gouget : wininet/tests: Use win_skip() to skip over unimplemented functionality.
Module: wine Branch: master Commit: c0cfe453e387d1362132717bd415f08e858010c7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c0cfe453e387d1362132717bd4... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Feb 25 10:29:58 2009 +0100 wininet/tests: Use win_skip() to skip over unimplemented functionality. --- dlls/wininet/tests/ftp.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/wininet/tests/ftp.c b/dlls/wininet/tests/ftp.c index a785fa9..b4de4e1 100644 --- a/dlls/wininet/tests/ftp.c +++ b/dlls/wininet/tests/ftp.c @@ -707,7 +707,7 @@ static void test_command(HINTERNET hFtp, HINTERNET hConnect) if (!pFtpCommandA) { - skip("FtpCommandA() is not available. Skipping the Ftp command tests\n"); + win_skip("FtpCommandA() is not available. Skipping the Ftp command tests\n"); return; } @@ -813,7 +813,7 @@ static void test_get_current_dir(HINTERNET hFtp, HINTERNET hConnect) if (!pFtpCommandA) { - skip("FtpCommandA() is not available. Skipping the Ftp get_current_dir tests\n"); + win_skip("FtpCommandA() is not available. Skipping the Ftp get_current_dir tests\n"); return; }
participants (1)
-
Alexandre Julliard