mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
msi: Fix some test cases to pass against win2k.
This commit is contained in:
parent
f701435ca3
commit
a302ec19bd
1 changed files with 4 additions and 6 deletions
|
@ -1037,14 +1037,12 @@ static void test_formatrecord(void)
|
|||
ok( 0 == strcmp(buffer,"hoo{{boo }}"), "wrong output\n");
|
||||
ok( r == ERROR_SUCCESS, "format failed\n");
|
||||
|
||||
todo_wine {
|
||||
r = MsiRecordSetString(hrec, 0, "{[1{{boo}}]}");
|
||||
r = MsiRecordSetString(hrec, 1, "hoo");
|
||||
sz = sizeof buffer;
|
||||
r = MsiFormatRecord(0, hrec, buffer, &sz);
|
||||
ok( sz == 3, "size wrong: got %lu, expected 3\n", sz);
|
||||
ok( 0 == strcmp(buffer,"[1]"), "wrong output: got %s, expected [1]\n", buffer);
|
||||
}
|
||||
ok( sz == 12, "size wrong: got %lu, expected 12\n", sz);
|
||||
ok( 0 == strcmp(buffer,"{[1{{boo}}]}"), "wrong output: got %s, expected [1]\n", buffer);
|
||||
ok( r == ERROR_SUCCESS, "format failed\n");
|
||||
|
||||
todo_wine {
|
||||
|
@ -1052,8 +1050,8 @@ static void test_formatrecord(void)
|
|||
r = MsiRecordSetString(hrec, 1, "hoo");
|
||||
sz = sizeof buffer;
|
||||
r = MsiFormatRecord(0, hrec, buffer, &sz);
|
||||
ok( sz == 3, "size wrong: got %lu, expected 3\n", sz);
|
||||
ok( 0 == strcmp(buffer,"[1]"), "wrong output: got %s, expected [1]\n", buffer);
|
||||
ok( sz == 6, "size wrong: got %lu, expected 3\n", sz);
|
||||
ok( 0 == strcmp(buffer,"{{hoo}"), "wrong output: got %s, expected [1]\n", buffer);
|
||||
}
|
||||
ok( r == ERROR_SUCCESS, "format failed\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue