Module: wine Branch: master Commit: 21c8c5a900903db2d37110ca42117982ce484422 URL: https://source.winehq.org/git/wine.git/?a=commit;h=21c8c5a900903db2d37110ca4...
Author: Zebediah Figura z.figura12@gmail.com Date: Wed Feb 13 22:19:34 2019 -0600
user32/tests: Execute test_shell_window() last.
Cf. also d83fc43e5e0155d1d00e54425c2af0a14dd2d40b.
Signed-off-by: Zebediah Figura z.figura12@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/user32/tests/win.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c index e55c139..3854325 100644 --- a/dlls/user32/tests/win.c +++ b/dlls/user32/tests/win.c @@ -10905,7 +10905,6 @@ START_TEST(win) test_layered_window();
test_SetForegroundWindow(hwndMain); - test_shell_window(); test_handles( hwndMain ); test_winregion(); test_map_points(); @@ -10935,4 +10934,8 @@ START_TEST(win) * state of hwndMain and hwndMain2 windows. */ test_topmost(); + + /* Execute the SetShellWindow() test last, since it kills explorer and that + * breaks a lot of things. */ + test_shell_window(); }