shlwapi/tests: Don't check return values inside of if(0) (LLVM/Clang).
This commit is contained in:
parent
5b25b11b05
commit
92cb70e97c
|
@ -1638,7 +1638,7 @@ static void test_SHFormatDateTimeA(void)
|
||||||
if (0)
|
if (0)
|
||||||
{
|
{
|
||||||
/* crashes on native */
|
/* crashes on native */
|
||||||
ret = pSHFormatDateTimeA(NULL, NULL, NULL, 0);
|
pSHFormatDateTimeA(NULL, NULL, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
GetLocalTime(&st);
|
GetLocalTime(&st);
|
||||||
|
@ -1799,7 +1799,7 @@ static void test_SHFormatDateTimeW(void)
|
||||||
if (0)
|
if (0)
|
||||||
{
|
{
|
||||||
/* crashes on native */
|
/* crashes on native */
|
||||||
ret = pSHFormatDateTimeW(NULL, NULL, NULL, 0);
|
pSHFormatDateTimeW(NULL, NULL, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
GetLocalTime(&st);
|
GetLocalTime(&st);
|
||||||
|
@ -2630,7 +2630,7 @@ static void test_SHIShellFolder_EnumObjects(void)
|
||||||
|
|
||||||
if(0){
|
if(0){
|
||||||
/* NULL object crashes on Windows */
|
/* NULL object crashes on Windows */
|
||||||
hres = pSHIShellFolder_EnumObjects(NULL, NULL, 0, NULL);
|
pSHIShellFolder_EnumObjects(NULL, NULL, 0, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* SHIShellFolder_EnumObjects doesn't QI the object for IShellFolder */
|
/* SHIShellFolder_EnumObjects doesn't QI the object for IShellFolder */
|
||||||
|
@ -2712,9 +2712,9 @@ static void test_SHGetIniString(void)
|
||||||
|
|
||||||
if(0){
|
if(0){
|
||||||
/* these crash on Windows */
|
/* these crash on Windows */
|
||||||
ret = pSHGetIniStringW(NULL, NULL, NULL, 0, NULL);
|
pSHGetIniStringW(NULL, NULL, NULL, 0, NULL);
|
||||||
ret = pSHGetIniStringW(NULL, AKeyW, out, sizeof(out), TestIniW);
|
pSHGetIniStringW(NULL, AKeyW, out, sizeof(out), TestIniW);
|
||||||
ret = pSHGetIniStringW(TestAppW, AKeyW, NULL, sizeof(out), TestIniW);
|
pSHGetIniStringW(TestAppW, AKeyW, NULL, sizeof(out), TestIniW);
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = pSHGetIniStringW(TestAppW, AKeyW, out, 0, TestIniW);
|
ret = pSHGetIniStringW(TestAppW, AKeyW, out, 0, TestIniW);
|
||||||
|
|
Loading…
Reference in New Issue