Commit 52c62995 authored by Ivan Leo Puoti's avatar Ivan Leo Puoti Committed by Alexandre Julliard

Delete some temp files created by the ole32 tests.

parent 561f2f03
...@@ -61,7 +61,12 @@ static void testProps(void) ...@@ -61,7 +61,12 @@ static void testProps(void)
STGM_READWRITE | STGM_SHARE_EXCLUSIVE | STGM_CREATE, 0, &storage); STGM_READWRITE | STGM_SHARE_EXCLUSIVE | STGM_CREATE, 0, &storage);
ok(SUCCEEDED(hr), "StgCreateDocfile failed: 0x%08lx\n", hr); ok(SUCCEEDED(hr), "StgCreateDocfile failed: 0x%08lx\n", hr);
if(!pStgCreatePropSetStg) return; if(!pStgCreatePropSetStg)
{
IStorage_Release(storage);
DeleteFileW(filename);
return;
}
hr = pStgCreatePropSetStg(storage, 0, &propSetStorage); hr = pStgCreatePropSetStg(storage, 0, &propSetStorage);
ok(SUCCEEDED(hr), "StgCreatePropSetStg failed: 0x%08lx\n", hr); ok(SUCCEEDED(hr), "StgCreatePropSetStg failed: 0x%08lx\n", hr);
...@@ -272,7 +277,12 @@ static void testCodepage(void) ...@@ -272,7 +277,12 @@ static void testCodepage(void)
STGM_READWRITE | STGM_SHARE_EXCLUSIVE | STGM_CREATE, 0, &storage); STGM_READWRITE | STGM_SHARE_EXCLUSIVE | STGM_CREATE, 0, &storage);
ok(SUCCEEDED(hr), "StgCreateDocfile failed: 0x%08lx\n", hr); ok(SUCCEEDED(hr), "StgCreateDocfile failed: 0x%08lx\n", hr);
if(!pStgCreatePropSetStg) return; if(!pStgCreatePropSetStg)
{
IStorage_Release(storage);
DeleteFileW(fileName);
return;
}
hr = pStgCreatePropSetStg(storage, 0, &propSetStorage); hr = pStgCreatePropSetStg(storage, 0, &propSetStorage);
ok(SUCCEEDED(hr), "StgCreatePropSetStg failed: 0x%08lx\n", hr); ok(SUCCEEDED(hr), "StgCreatePropSetStg failed: 0x%08lx\n", hr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment