Re: [1/3] user32/tests: Comment-out PostQuitMessage (causes tests skip)

2012-05-31 Thread Alexey Slepov
WM_CLOSE:  DestroyWindow(hDlg);  return TRUE; -    case WM_DESTROY: -    PostQuitMessage(0); -    return TRUE;  }  return FALSE;  } 29.05.2012, 01:16, "Alexey Slepov" : >  I figured out now. >  As described in wine sources, PostQuitMessage() se

Re: [1/3] user32/tests: Comment-out PostQuitMessage (causes tests skip)

2012-05-28 Thread Alexey Slepov
I figured out now. As described in wine sources, PostQuitMessage() sets a flag in the thread's message queue that signals it to generate a WM_QUIT message when there are no other pending sent or posted messages in the queue. The tests with skipped testcases are those which use WM_TIMER messages -