Synced shlwapi_winetest.exe with Wine HEAD

svn path=/trunk/; revision=33904
This commit is contained in:
Pierre Schweitzer
2008-06-08 17:14:50 +00:00
parent 8a7513a6c7
commit cbf728b477
3 changed files with 15 additions and 3 deletions
+12 -2
View File
@@ -197,10 +197,15 @@ static void test_SHCreateStreamOnFileA(DWORD mode, DWORD stgm)
IStream * stream;
HRESULT ret;
ULONG refcount;
static const char * test_file = "c:\\test.txt";
char test_file[MAX_PATH];
static const CHAR testA_txt[] = "\\testA.txt";
trace("SHCreateStreamOnFileA: testing mode %d, STGM flags %08x\n", mode, stgm);
/* Don't used a fixed path for the testA.txt file */
GetTempPathA(MAX_PATH, test_file);
lstrcatA(test_file, testA_txt);
/* invalid arguments */
stream = NULL;
@@ -284,10 +289,15 @@ static void test_SHCreateStreamOnFileW(DWORD mode, DWORD stgm)
IStream * stream;
HRESULT ret;
ULONG refcount;
static const WCHAR test_file[] = { 'c', ':', '\\', 't', 'e', 's', 't', '.', 't', 'x', 't', '\0' };
WCHAR test_file[MAX_PATH];
static const WCHAR testW_txt[] = { '\\', 't', 'e', 's', 't', 'W', '.', 't', 'x', 't', '\0' };
trace("SHCreateStreamOnFileW: testing mode %d, STGM flags %08x\n", mode, stgm);
/* Don't used a fixed path for the testW.txt file */
GetTempPathW(MAX_PATH, test_file);
lstrcatW(test_file, testW_txt);
/* invalid arguments */
stream = NULL;
+1 -1
View File
@@ -16,12 +16,12 @@
<file>url.c</file>
<file>testlist.c</file>
<library>wine</library>
<library>uuid</library>
<library>shlwapi</library>
<library>advapi32</library>
<library>ole32</library>
<library>oleaut32</library>
<library>kernel32</library>
<library>uuid</library>
<library>ntdll</library>
</module>
</group>
+2
View File
@@ -957,4 +957,6 @@ START_TEST(string)
test_SHAnsiToAnsi();
test_SHUnicodeToUnicode();
test_StrXXX_overflows();
CoUninitialize();
}