20 Oct
2024
20 Oct
'24
4:52 p.m.
Piotr Caban (@piotr) commented about dlls/msvcrt/tests/string.c:
ret = p_tolower((signed char)0xd0); ok(ret == 0xd0, "Got %#x.\n", ret); ret = p_tolower((unsigned char)0xd0); - todo_wine ok(ret == (unsigned char)0xd0, "Got %#x.\n", ret); + ok(ret == (unsigned char)0xd0, "Got %#x.\n", ret);
The implementation sets errno incorrectly - please add errno tests. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6703#note_85539