Hans Leidekker : msi/tests: Use a unique product code when testing MsiConfigureFeature parameter validation .
Module: wine Branch: master Commit: 43f7bc86875f5dae8f3f21bcc8e4d80b5c8d3617 URL: http://source.winehq.org/git/wine.git/?a=commit;h=43f7bc86875f5dae8f3f21bcc8... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Tue Apr 27 13:29:49 2010 +0200 msi/tests: Use a unique product code when testing MsiConfigureFeature parameter validation. This is to avoid ERROR_INSTALL_ALREADY_RUNNING errors on Windows. --- dlls/msi/tests/msi.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msi/tests/msi.c b/dlls/msi/tests/msi.c index 4bc59ac..a05abeb 100644 --- a/dlls/msi/tests/msi.c +++ b/dlls/msi/tests/msi.c @@ -247,10 +247,10 @@ static void test_null(void) r = MsiConfigureFeatureA("{00000000-0000-0000-0000-000000000000}", NULL, 0); ok( r == ERROR_INVALID_PARAMETER, "wrong error\n"); - r = MsiConfigureFeatureA("{00000000-0000-0000-0000-000000000000}", "foo", 0); + r = MsiConfigureFeatureA("{00000000-0000-0000-0000-000000000001}", "foo", 0); ok( r == ERROR_INVALID_PARAMETER, "wrong error %d\n", r); - r = MsiConfigureFeatureA("{00000000-0000-0000-0000-000000000000}", "foo", INSTALLSTATE_DEFAULT); + r = MsiConfigureFeatureA("{00000000-0000-0000-0000-000000000002}", "foo", INSTALLSTATE_DEFAULT); ok( r == ERROR_UNKNOWN_PRODUCT, "wrong error %d\n", r); /* make sure empty string to MsiGetProductInfo is not a handle to default registry value, saving and restoring the
participants (1)
-
Alexandre Julliard