mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[ADVAPI32_APITEST] #if out 2 tests for x64 that fail on Windows 2003 x64
This commit is contained in:
parent
dbb72f4923
commit
a71d80239d
1 changed files with 4 additions and 1 deletions
|
@ -225,8 +225,9 @@ static int QueryConfig2W(SC_HANDLE hService, LPCWSTR serviceName, DWORD dwInfoLe
|
|||
|
||||
/* Check the values */
|
||||
ok(lpFailureActions1->dwResetPeriod == lpFailureActions2->dwResetPeriod, "lpFailureActions1->dwResetPeriod != lpFailureActions2->dwResetPeriod\n");
|
||||
#ifndef _M_AMD64 // Fails on Win 2003 x64
|
||||
ok(lpFailureActions1->cActions == lpFailureActions2->cActions, "lpFailureActions1->cActions != lpFailureActions2->cActions\n");
|
||||
|
||||
#endif
|
||||
/* Compare the actions */
|
||||
if (lpFailureActions1->cActions == lpFailureActions2->cActions)
|
||||
{
|
||||
|
@ -417,7 +418,9 @@ static int QueryConfig2A(SC_HANDLE hService, LPCSTR serviceName, DWORD dwInfoLev
|
|||
|
||||
/* Check the values */
|
||||
ok(lpFailureActions1->dwResetPeriod == lpFailureActions2->dwResetPeriod, "lpFailureActions1->dwResetPeriod != lpFailureActions2->dwResetPeriod\n");
|
||||
#ifndef _M_AMD64 // Fails on Win 2003 x64
|
||||
ok(lpFailureActions1->cActions == lpFailureActions2->cActions, "lpFailureActions1->cActions != lpFailureActions2->cActions\n");
|
||||
#endif
|
||||
|
||||
/* Compare the actions */
|
||||
if (lpFailureActions1->cActions == lpFailureActions2->cActions)
|
||||
|
|
Loading…
Reference in a new issue