msi: Add a test to exersize the code to retrieve rows from join tables.

This commit is contained in:
Hans Leidekker 2010-01-19 15:08:48 +01:00 committed by Alexandre Julliard
parent 13e8505e58
commit 72393c55e9

View file

@ -3218,6 +3218,9 @@ static void test_join(void)
ok( !lstrcmp( buf, join_res_first[i].two ),
"For (row %d, column 2) expected '%s', got %s\n", i, join_res_first[i].two, buf );
r = MsiViewModify(hview, MSIMODIFY_UPDATE, hrec);
todo_wine ok( r == ERROR_SUCCESS, "failed to modiy view: %d\n", r );
i++;
MsiCloseHandle(hrec);
}