From 8e9c87628875fb8c043426ac9831a569d991a621 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 10 Nov 2006 15:23:39 +0100 Subject: [PATCH] user: Only perform the screen resolution changing tests in interactive mode. --- dlls/user/tests/monitor.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/user/tests/monitor.c b/dlls/user/tests/monitor.c index 787ac2e504f..153a3534b1e 100644 --- a/dlls/user/tests/monitor.c +++ b/dlls/user/tests/monitor.c @@ -168,6 +168,7 @@ START_TEST(monitor) { init_function_pointers(); test_enumdisplaydevices(); - test_ChangeDisplaySettingsEx(); + if (winetest_interactive) + test_ChangeDisplaySettingsEx(); test_monitors(); }