mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00
[USER32_APITEST] Comment out a test for GetMessageTime that randomly fails on Windows
This commit is contained in:
parent
b292036347
commit
28a305e26a
1 changed files with 3 additions and 2 deletions
|
@ -67,8 +67,9 @@ WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
case WM_MOUSEMOVE:
|
case WM_MOUSEMOVE:
|
||||||
trace("WM_MOUSEMOVE\n");
|
trace("WM_MOUSEMOVE\n");
|
||||||
ok_int(s_nCount, 5);
|
ok_int(s_nCount, 5);
|
||||||
ok(GetMessageTime() - s_nMsgTime < TIMER_INTERVAL,
|
// This test randomly fails on Windows 2003
|
||||||
"GetMessageTime() is wrong, compared to previous one\n");
|
//ok(GetMessageTime() - s_nMsgTime < TIMER_INTERVAL,
|
||||||
|
// "GetMessageTime() is wrong, compared to previous one\n");
|
||||||
ok(GetTickCount() - (DWORD)GetMessageTime() < TIMER_INTERVAL / 2,
|
ok(GetTickCount() - (DWORD)GetMessageTime() < TIMER_INTERVAL / 2,
|
||||||
"GetMessageTime() is wrong, compared to GetTickCount()\n");
|
"GetMessageTime() is wrong, compared to GetTickCount()\n");
|
||||||
s_bReach_WM_MOUSEMOVE = TRUE;
|
s_bReach_WM_MOUSEMOVE = TRUE;
|
||||||
|
|
Loading…
Reference in a new issue