mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[WINESYNC] msi/tests: Also test full range of properties for MsiSummaryInfoSetPropertyW.
Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id ff0129370869ed4ffb4acd69d7123f3d5ca294c3 by Dmitry Timoshkov <dmitry@baikal.ru>
This commit is contained in:
parent
7c8b6fdf82
commit
dbebec3065
1 changed files with 5 additions and 3 deletions
|
@ -510,12 +510,14 @@ static void test_db(MSIHANDLE hinst)
|
|||
|
||||
for (i = 0; i < 20; i++)
|
||||
{
|
||||
WCHAR emptyW[1] = { 0 };
|
||||
|
||||
r = MsiSummaryInfoSetPropertyA(suminfo, i, prop_type[i], 1252, &ft, "");
|
||||
ok(hinst, r == ERROR_FUNCTION_FAILED, "%u: got %u\n", i, r);
|
||||
}
|
||||
|
||||
r = MsiSummaryInfoSetPropertyW(suminfo, PID_CODEPAGE, VT_I2, 1252, &ft, NULL);
|
||||
ok(hinst, r == ERROR_FUNCTION_FAILED, "got %u\n", r);
|
||||
r = MsiSummaryInfoSetPropertyW(suminfo, i, prop_type[i], 1252, &ft, emptyW);
|
||||
ok(hinst, r == ERROR_FUNCTION_FAILED, "%u: got %u\n", i, r);
|
||||
}
|
||||
|
||||
r = MsiCloseHandle(suminfo);
|
||||
ok(hinst, !r, "got %u\n", r);
|
||||
|
|
Loading…
Reference in a new issue