mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[ROSTESTS]
Bug 5957 Disable test_shell_window() in user32:win test. Allow to run previously disabled tests in WINE_INTERACTIVE mode. svn path=/trunk/; revision=50901
This commit is contained in:
parent
666446bfaa
commit
0fcd8261f2
2 changed files with 16 additions and 7 deletions
|
@ -12572,8 +12572,10 @@ START_TEST(msg)
|
||||||
test_paint_messages();
|
test_paint_messages();
|
||||||
test_interthread_messages();
|
test_interthread_messages();
|
||||||
test_message_conversion();
|
test_message_conversion();
|
||||||
|
if(!winetest_interactive)
|
||||||
skip("skipping test_accelerators, that hangs on reactos\n");
|
skip("skipping test_accelerators, that hangs on reactos\n");
|
||||||
//test_accelerators();
|
else
|
||||||
|
test_accelerators();
|
||||||
test_timers();
|
test_timers();
|
||||||
test_timers_no_wnd();
|
test_timers_no_wnd();
|
||||||
if (hCBT_hook) test_set_hook();
|
if (hCBT_hook) test_set_hook();
|
||||||
|
@ -12594,8 +12596,10 @@ START_TEST(msg)
|
||||||
test_dialog_messages();
|
test_dialog_messages();
|
||||||
test_nullCallback();
|
test_nullCallback();
|
||||||
test_dbcs_wm_char();
|
test_dbcs_wm_char();
|
||||||
|
if(!winetest_interactive)
|
||||||
skip("skipping test_menu_messages, that hangs on reactos\n");
|
skip("skipping test_menu_messages, that hangs on reactos\n");
|
||||||
//test_menu_messages();
|
else
|
||||||
|
test_menu_messages();
|
||||||
test_paintingloop();
|
test_paintingloop();
|
||||||
test_defwinproc();
|
test_defwinproc();
|
||||||
test_clipboard_viewers();
|
test_clipboard_viewers();
|
||||||
|
|
|
@ -6059,8 +6059,10 @@ START_TEST(win)
|
||||||
test_capture_2();
|
test_capture_2();
|
||||||
test_capture_3(hwndMain, hwndMain2);
|
test_capture_3(hwndMain, hwndMain2);
|
||||||
|
|
||||||
|
if(!winetest_interactive)
|
||||||
skip("skipping test_capture_4, that hangs on reactos\n");
|
skip("skipping test_capture_4, that hangs on reactos\n");
|
||||||
//test_capture_4();
|
else
|
||||||
|
test_capture_4();
|
||||||
|
|
||||||
test_CreateWindow();
|
test_CreateWindow();
|
||||||
test_parent_owner();
|
test_parent_owner();
|
||||||
|
@ -6101,6 +6103,9 @@ START_TEST(win)
|
||||||
test_layered_window();
|
test_layered_window();
|
||||||
|
|
||||||
test_SetForegroundWindow(hwndMain);
|
test_SetForegroundWindow(hwndMain);
|
||||||
|
if(!winetest_interactive)
|
||||||
|
skip("bug 5957: skipping test_shell_window, it crashes ros/win7 explorer\n");
|
||||||
|
else
|
||||||
test_shell_window();
|
test_shell_window();
|
||||||
test_handles( hwndMain );
|
test_handles( hwndMain );
|
||||||
test_winregion();
|
test_winregion();
|
||||||
|
|
Loading…
Reference in a new issue