[PATCH 2/5] msi/tests: Add another test for MsiProcessMessage.

Zebediah Figura z.figura12 at gmail.com
Sun Jun 25 21:13:53 CDT 2017


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
The purpose of this patch is largely just to show that the test above
passes due to incorrect code.

 dlls/msi/tests/format.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dlls/msi/tests/format.c b/dlls/msi/tests/format.c
index 8ed4bbb..da586b2 100644
--- a/dlls/msi/tests/format.c
+++ b/dlls/msi/tests/format.c
@@ -2777,6 +2777,10 @@ static void test_processmessage(void)
     r = MsiProcessMessage(package, INSTALLMESSAGE_ACTIONSTART, hrec);
     ok( r == IDOK, "expected IDOK, got %i\n", r);
 
+    r = MsiProcessMessage(package, INSTALLMESSAGE_PROGRESS, hrec);
+    todo_wine
+    ok( r == IDOK, "expected IDOK, got %i\n", r);
+
     MsiCloseHandle(hrec);
     MsiCloseHandle(package);
 
-- 
2.7.4




More information about the wine-patches mailing list