user32/tests: Ignore WM_WININICHANGE message in test sequences.

Tests sometimes fail because of an unexpected 0x001a message.

Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Rémi Bernon 2019-11-12 21:42:00 +01:00 committed by Alexandre Julliard
parent 8134b8b6f5
commit 1450924e59
1 changed files with 2 additions and 1 deletions

View File

@ -2085,7 +2085,8 @@ static BOOL ignore_message( UINT message )
message == WM_TIMECHANGE ||
message == WM_DISPLAYCHANGE ||
message == WM_DEVICECHANGE ||
message == WM_DWMNCRENDERINGCHANGED);
message == WM_DWMNCRENDERINGCHANGED ||
message == WM_WININICHANGE);
}
static unsigned hash_Ly_W(const WCHAR *str)