Re: CreateToolhelp32Snapshot tests
11 May
2006
11 May
'06
5:46 a.m.
"Stefan Leichter" <Stefan.Leichter(a)camLine.com> wrote:
e.g. http://test.winehq.org/data/200605071000/2000_ahz-vm2k/kernel32:toolhelp.txt show four failing tests beause of comparing upper and lower case dll names
- if (!strcmp(expected[i], me.szModule)) found[i]++; + /* on win2k the names can be upper case */ + if (!strcasecmp(expected[i], me.szModule)) found[i]++;
It's better to use win32 API lstrcmpi since strcasecmp might be not available on a target windows platform. -- Dmitry.
7156
Age (days ago)
7156
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dmitry Timoshkov