ChangeSet ID: 6449
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/11/30 13:03:20
Modified files:
dlls/kernel/tests: thread.c
Log message:
Francois Gouget <fgouget(a)free.fr>
{Get,Set}ThreadPriorityBoost and SetThreadIdealProcessor are missing
on Win95 -> use GetProcAddress.
Cleanup the handling of OpenThread.
Check SuspendThread after a thread terminates (needed by Ipix).
Remove unnecessary version checks (check for
ERROR_CALL_NOT_IMPLEMENTED and similar instead).
Cleanup casts, signed/unsigned comparisons.
Patch: http://cvs.winehq.com/patch.py?id=6449
Old revision New revision Changes Path
1.7 1.8 +105 -102 wine/dlls/kernel/tests/thread.c
ChangeSet ID: 6448
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/11/30 13:02:53
Modified files:
dlls/kernel/tests: drive.c
Log message:
Francois Gouget <fgouget(a)free.fr>
GetDiskFreeSpace(all NULLs) crashes on NT4 -> removed.
GetDiskFreeSpace("." | "..") fails on Win98 and NT4 but succeeds on XP
-> removed.
Skip the GetDiskFreeSpace tests on floppy drives because NT pops up a
MessageBox if no floppy is present.
Fix the error code checks to take into account the differences between
Win9x, NT4 and XP.
Skip the unicode tests if the first call returns
ERROR_CALL_NOT_IMPLEMENTED.
Whenever a test fails, print sufficient information (typically return
code and GetLastError()!) to let the developer figure out what is
wrong.
Patch: http://cvs.winehq.com/patch.py?id=6448
Old revision New revision Changes Path
1.1 1.2 +48 -41 wine/dlls/kernel/tests/drive.c
ChangeSet ID: 6447
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/11/30 13:02:22
Modified files:
dlls/kernel/tests: environ.c
Log message:
Francois Gouget <fgouget(a)free.fr>
SetEnvironmentVariableA(NULL, NULL) crashes on Win98 -> removed.
SetEnvironmentVariableA("", value) crashes on NT4 -> removed.
The behavior of SetEnvironmentVariableA("", "") varies to much ->
removed.
Test the behavior of SetEnvironmentVariable{A,W}(name, "") taking into
account the differences between Win9x and NT.
Test the behavior of GetEnvironmentVariable{A,W}(name, buf, 0).
Fix the error code checks to take into account the differences between
Win9x, NT4 and XP.
Skip the unicode tests if the first call returns
ERROR_CALL_NOT_IMPLEMENTED.
Whenever a test fails, print sufficient information (typically return
code and GetLastError()!) to let the developer figure out what is
wrong.
Patch: http://cvs.winehq.com/patch.py?id=6447
Old revision New revision Changes Path
1.2 1.3 +110 -80 wine/dlls/kernel/tests/environ.c