msi [2/4]: Delete msifile after the tests

James Hawkins truiken at gmail.com
Mon Jul 9 21:33:20 CDT 2007


Hi,

Changelog:
* Delete msifile after the tests.

 dlls/msi/tests/db.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

-- 
James Hawkins
-------------- next part --------------
diff --git a/dlls/msi/tests/db.c b/dlls/msi/tests/db.c
index 1599c80..2c47a1e 100755
--- a/dlls/msi/tests/db.c
+++ b/dlls/msi/tests/db.c
@@ -3172,6 +3172,8 @@ static void test_update(void)
     ok(r == ERROR_SUCCESS, "MsiDatabaseCommit failed\n");
     r = MsiCloseHandle(hdb);
     ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
+
+    DeleteFile(msifile);
 }
 
 static void test_special_tables(void)
@@ -3321,6 +3323,8 @@ static void test_select_markers(void)
     ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
     r = MsiCloseHandle(hdb);
     ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
+
+    DeleteFile(msifile);
 }
 
 START_TEST(db)
-- 
1.4.1


More information about the wine-patches mailing list