Francois Gouget : msi/tests: Avoid #if 0 to make sure code still compiles.
Module: wine Branch: master Commit: d2084d5a41b544c9361d09a4b0a9e93630ae9be5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d2084d5a41b544c9361d09a4b0... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Sep 26 23:41:26 2011 +0200 msi/tests: Avoid #if 0 to make sure code still compiles. --- dlls/msi/tests/install.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index b1db7e4..bb8335a 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -3768,10 +3768,8 @@ static void generate_transform(void) r = MsiDatabaseGenerateTransform(hdb1, hdb2, mstfile, 0, 0); ok(r == ERROR_SUCCESS, "return code %d, should be ERROR_SUCCESS\n", r); -#if 0 /* not implemented in wine yet */ r = MsiCreateTransformSummaryInfo(hdb2, hdb2, mstfile, 0, 0); - ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r); -#endif + todo_wine ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r); MsiCloseHandle(hdb1); MsiCloseHandle(hdb2);
participants (1)
-
Alexandre Julliard