From 5af06dec83870d73ba0234ec25e97a8a7fdb8385 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 9 Jul 2007 19:33:20 -0700 Subject: [PATCH] msi: Delete msifile after the tests. --- dlls/msi/tests/db.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/msi/tests/db.c b/dlls/msi/tests/db.c index 1599c805d3a..2c47a1e5e0d 100644 --- 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)