Re: [msi] Remove todo_wine for succeeding test
On 11/12/06, Paul Vriens <paul.vriens.wine(a)gmail.com> wrote:
Hi,
this test succeeds (at least on my box).
Changelog Remove todo_wine for succeeding test
Cheers,
Paul. --- dlls/msi/tests/suminfo.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/tests/suminfo.c b/dlls/msi/tests/suminfo.c index 869495d..6e912b3 100644 --- a/dlls/msi/tests/suminfo.c +++ b/dlls/msi/tests/suminfo.c @@ -393,7 +393,7 @@ static void test_summary_binary(void)
r = MsiSummaryInfoGetProperty(hsuminfo, PID_WORDCOUNT, &type, &ival, NULL, NULL, NULL); ok(r == ERROR_SUCCESS, "MsiSummaryInfoGetProperty failed\n"); - todo_wine ok( ival == 0, "value incorrect\n"); + ok( ival == 0, "value incorrect\n");
/* looks like msi adds some of its own values in here */ count = 0; -- 1.4.3.4
Forget this one. This test should fail on Wine as shown by Mike's patch (msi: Fix an uninitialized variable in the test cases.). Cheers, Paul.
participants (1)
-
Paul Vriens