From 2ec955c93fee1f67bb0cd715f0ee9c59fd5001aa Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 13 May 2003 00:29:34 +0000 Subject: [PATCH] Change the #include order so the test compiles with the MSVC headers. Fix a few signed/unsigned warnings. --- dlls/msvcrt/tests/file.c | 21 ++++++++++----------- dlls/shlwapi/tests/path.c | 3 ++- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/dlls/msvcrt/tests/file.c b/dlls/msvcrt/tests/file.c index bcfd324d8cd..481ef829278 100644 --- a/dlls/msvcrt/tests/file.c +++ b/dlls/msvcrt/tests/file.c @@ -18,7 +18,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "wine/test.h" +#include #include #include #include @@ -26,8 +27,6 @@ #include #include -#include "wine/test.h" - static void test_fdopen( void ) { static char buffer[] = {0,1,2,3,4,5,6,7,8,9}; @@ -66,7 +65,7 @@ static void test_fgetwc( void ) WCHAR wtextW[LLEN+1]; WCHAR *mytextW = NULL, *aptr, *wptr; BOOL diff_found = FALSE; - int i; + unsigned int i; tempf=_tempnam(".","wne"); tempfh = fopen(tempf,"wt"); /* open in TEXT mode */ @@ -98,7 +97,7 @@ static void test_file_put_get( void ) WCHAR wtextW[LLEN+1]; WCHAR *mytextW = NULL, *aptr, *wptr; BOOL diff_found = FALSE; - int i; + unsigned int i; tempf=_tempnam(".","wne"); tempfh = fopen(tempf,"wt"); /* open in TEXT mode */ @@ -146,30 +145,30 @@ static void test_file_write_read( void ) tempf=_tempnam(".","wne"); ok((tempfd = _open(tempf,_O_CREAT|_O_TRUNC|_O_TEXT|_O_RDWR,_S_IREAD | _S_IWRITE)) != -1,"Can't open"); /* open in TEXT mode */ - ok(_write(tempfd,mytext,strlen(mytext)) == strlen(mytext), "_write _O_TEXT bad return value"); + ok(_write(tempfd,mytext,strlen(mytext)) == lstrlenA(mytext), "_write _O_TEXT bad return value"); _close(tempfd); tempfd = _open(tempf,_O_RDONLY|_O_BINARY,0); /* open in BINARY mode */ - ok(_read(tempfd,btext,LLEN) == strlen(dostext), "_read _O_BINARY got bad length"); + ok(_read(tempfd,btext,LLEN) == lstrlenA(dostext), "_read _O_BINARY got bad length"); ok( memcmp(dostext,btext,strlen(dostext)) == 0,"problems with _O_TEXT _write and _O_BINARY _write"); ok( btext[strlen(dostext)-2] == '\r', "CR not written"); _close(tempfd); tempfd = _open(tempf,_O_RDONLY|_O_TEXT); /* open in TEXT mode */ - ok(_read(tempfd,btext,LLEN) == strlen(mytext), "_read _O_TEXT got bad length"); + ok(_read(tempfd,btext,LLEN) == lstrlenA(mytext), "_read _O_TEXT got bad length"); ok( memcmp(mytext,btext,strlen(mytext)) == 0,"problems with _O_TEXT _write / _write"); _close(tempfd); ok(unlink(tempf) !=-1 ,"Can't unlink"); tempf=_tempnam(".","wne"); ok((tempfd = _open(tempf,_O_CREAT|_O_TRUNC|_O_BINARY|_O_RDWR,0)) != -1,"Can't open %s",tempf); /* open in BINARY mode */ - ok(_write(tempfd,dostext,strlen(dostext)) == strlen(dostext), "_write _O_TEXT bad return value"); + ok(_write(tempfd,dostext,strlen(dostext)) == lstrlenA(dostext), "_write _O_TEXT bad return value"); _close(tempfd); tempfd = _open(tempf,_O_RDONLY|_O_BINARY,0); /* open in BINARY mode */ - ok(_read(tempfd,btext,LLEN) == strlen(dostext), "_read _O_BINARY got bad length"); + ok(_read(tempfd,btext,LLEN) == lstrlenA(dostext), "_read _O_BINARY got bad length"); ok( memcmp(dostext,btext,strlen(dostext)) == 0,"problems with _O_TEXT _write and _O_BINARY _write"); ok( btext[strlen(dostext)-2] == '\r', "CR not written"); _close(tempfd); tempfd = _open(tempf,_O_RDONLY|_O_TEXT); /* open in TEXT mode */ - ok(_read(tempfd,btext,LLEN) == strlen(mytext), "_read _O_TEXT got bad length"); + ok(_read(tempfd,btext,LLEN) == lstrlenA(mytext), "_read _O_TEXT got bad length"); ok( memcmp(mytext,btext,strlen(mytext)) == 0,"problems with _O_TEXT _write / _write"); _close(tempfd); diff --git a/dlls/shlwapi/tests/path.c b/dlls/shlwapi/tests/path.c index efc252f7857..73d950e6d7b 100644 --- a/dlls/shlwapi/tests/path.c +++ b/dlls/shlwapi/tests/path.c @@ -22,8 +22,9 @@ #include #include "wine/test.h" -#include "wine/unicode.h" #include "winbase.h" +#include "wine/unicode.h" +#include "winreg.h" #include "shlwapi.h" #include "wininet.h"