From 72393c55e90477fa36c46fcda378a9b0bc53991c Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Tue, 19 Jan 2010 15:08:48 +0100 Subject: [PATCH] msi: Add a test to exersize the code to retrieve rows from join tables. --- dlls/msi/tests/db.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/msi/tests/db.c b/dlls/msi/tests/db.c index d3e9ad1c376..6a2852d1dda 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); }