Module: wine Branch: master Commit: 72393c55e90477fa36c46fcda378a9b0bc53991c URL: http://source.winehq.org/git/wine.git/?a=commit;h=72393c55e90477fa36c46fcda3...
Author: Hans Leidekker hans@codeweavers.com Date: Tue Jan 19 15:08:48 2010 +0100
msi: Add a test to exersize the code to retrieve rows from join tables.
---
dlls/msi/tests/db.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/msi/tests/db.c b/dlls/msi/tests/db.c index d3e9ad1..6a2852d 100644 --- a/dlls/msi/tests/db.c +++ b/dlls/msi/tests/db.c @@ -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); }