version/tests: Replace some '#if 0's with 'if (0)'s.

Fix the code so it compiles without warnings.
This commit is contained in:
Francois Gouget 2006-12-14 18:10:59 +01:00 committed by Alexandre Julliard
parent c1e7d16f40
commit 65921ad1af

View file

@ -199,17 +199,18 @@ static void test_info(void)
if (pVersionInfo == 0)
return;
#if 0
if (0)
{
/* this test crashes on WinNT4
*/
boolret = GetFileVersionInfoA( "kernel32.dll", 0, retval, 0);
ok (!boolret, "GetFileVersionInfoA should have failed: GetLastError = 0x%08lx\n", GetLastError());
ok (!boolret, "GetFileVersionInfoA should have failed: GetLastError = %d\n", GetLastError());
ok ((GetLastError() == ERROR_INVALID_DATA) || (GetLastError() == ERROR_BAD_PATHNAME) ||
(GetLastError() == NO_ERROR),
"Last error wrong! ERROR_INVALID_DATA/ERROR_BAD_PATHNAME (ME)/"
"NO_ERROR (95) expected, got 0x%08lx\n",
"NO_ERROR (95) expected, got 0x%08x\n",
GetLastError());
#endif
}
boolret = GetFileVersionInfoA( "kernel32.dll", 0, retval, pVersionInfo );
ok (boolret, "GetFileVersionInfoA failed: GetLastError = 0x%08x\n", GetLastError());
@ -228,12 +229,13 @@ static void test_info(void)
trace("kernel32.dll version: %s\n", VersionString);
#if 0
if (0)
{
/* this test crashes on WinNT4
*/
boolret = VerQueryValueA( pVersionInfo, "\\", (LPVOID *)&pFixedVersionInfo, 0);
ok (boolret, "VerQueryValue failed: GetLastError = 0x%08lx\n", GetLastError());
#endif
ok (boolret, "VerQueryValue failed: GetLastError = 0x%08x\n", GetLastError());
}
cleanup:
HeapFree( GetProcessHeap(), 0, pVersionInfo);