ChangeSet ID: 6584
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/11 21:56:09
Modified files:
dlls/kernel/tests: locale.c
Log message:
Francois Gouget <fgouget(a)free.fr>
Don't test whether Get{Currency,Date,Number,Time}FormatA writes as
much as possible in the buffer even if it is too small. This is
undocumented and does not match the Win9x behavior.
Skip Unicode tests on Win9x.
Fix usage of memset/sizeof/COUNTOF.
Fix signed/unsigned warnings (in MSVC) by using lstrlenA instead of
strlen.
Patch: http://cvs.winehq.com/patch.py?id=6584
Old revision New revision Changes Path
1.7 1.8 +92 -82 wine/dlls/kernel/tests/locale.c
ChangeSet ID: 6581
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/11 21:54:23
Modified files:
dlls/kernel/tests: directory.c
Log message:
Francois Gouget <fgouget(a)free.fr>
Skip the Unicode tests on Win9x.
Test Get{System,Windows}Directory{A,W}(NULL, 0). This is a more
standard way to get len_with_null too.
Adapt the error code checks to take into account variations between
Win9x and NT.
Patch: http://cvs.winehq.com/patch.py?id=6581
Old revision New revision Changes Path
1.3 1.4 +52 -18 wine/dlls/kernel/tests/directory.c
ChangeSet ID: 6580
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/11 21:54:01
Modified files:
files : file.c
dlls/kernel/tests: file.c
Log message:
Francois Gouget <fgouget(a)free.fr>
Fix the error codes returned by DeleteFile{A,W} to match NT.
Adapt the DeleteFileA error code checks to take into account variations
between Win9x and NT.
Test DeleteFile(NULL).
Add tests for DeleteFileW.
On NT, calling _lclose on an already closed handle will cause memory
corruption and thus sometimes crash -> removed the relevant test.
Skip the Unicode tests when on Win9x.
Patch: http://cvs.winehq.com/patch.py?id=6580
Old revision New revision Changes Path
1.171 1.172 +2 -9 wine/files/file.c
1.11 1.12 +31 -7 wine/dlls/kernel/tests/file.c