James Hawkins : msi: Set the source path tests to "interactive" to avoid timing out on some machines.
Module: wine Branch: master Commit: 7616a750ba12dbeb28f6931c0a4ff4074002a1c1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7616a750ba12dbeb28f6931c0a... Author: James Hawkins <jhawkins(a)codeweavers.com> Date: Mon Oct 27 00:55:39 2008 -0500 msi: Set the source path tests to "interactive" to avoid timing out on some machines. --- dlls/msi/tests/install.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index 8d04ff6..9773529 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -5086,6 +5086,12 @@ static void test_sourcepath(void) { UINT r, i; + if (!winetest_interactive) + { + skip("Run in interactive mode to run source path tests.\n"); + return; + } + create_database(msifile, sp_tables, sizeof(sp_tables) / sizeof(msi_table)); MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
participants (1)
-
Alexandre Julliard