ChangeSet ID: 6568
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/10 19:31:56
Modified files:
tools : mingwrap.c
Log message:
Wine internal includes should not be in the include path.
Patch: http://cvs.winehq.com/patch.py?id=6568
Old revision New revision Changes Path
1.1 1.2 +0 -1 wine/tools/mingwrap.c
ChangeSet ID: 6565
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/10 19:30:14
Modified files:
tools : makedep.c
Log message:
Try to open source file in current directory first in case it is a
generated file.
Patch: http://cvs.winehq.com/patch.py?id=6565
Old revision New revision Changes Path
1.13 1.14 +10 -4 wine/tools/makedep.c
ChangeSet ID: 6559
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/10 18:17:42
Modified files:
include/wine : test.h
Log message:
Francois Gouget <fgouget(a)free.fr>
When reporting a test failure, only report the file name, not the full
path.
Merge winetest_set_trace_location with winetest_set_ok_location.
Patch: http://cvs.winehq.com/patch.py?id=6559
Old revision New revision Changes Path
1.7 1.8 +16 -18 wine/include/wine/test.h
ChangeSet ID: 6558
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/10 18:16:31
Modified files:
dlls/kernel/tests: path.c
Log message:
From: Francois Gouget <fgouget(a)free.fr>
'"' is an illegal character on Win9x so we cannot test it.
GetShortPathNameA behaves differently on Win9x and NT: on NT it
succeeds even if not all path components exist, as long as they are
already in the 8.3 format.
Wine apparently implements the NT behavior thus many todo_wine went
away.
Fixed some error code checks to take into account all possible return
values.
GetTempFileNameA appears to only use the lower 16bits of the id on
Win95 (and never returns more than 16 bits on other platforms).
GetLongPathNameA is missing on some Windows versions.
Modified the GetTempPath tests to make sure they return the expected
value. Removed the redundant tests (e.g. if buf[0]==0 then buf!="foo",
no need to test both).
The 'len_with_null - 1' case is not testable as the Windows behavior
varies too much between versions.
We cannot check whether Windows touches the buffer either as this
heavily depends on the Windows version and specific circumstances of
the call.
Finally NT4 sometimes exaggerates the required buffer size.
Patch: http://cvs.winehq.com/patch.py?id=6558
Old revision New revision Changes Path
1.10 1.11 +138 -160 wine/dlls/kernel/tests/path.c