mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[POWRPROF_APITEST] Fix cppcheck warnings.
* test_CallNtPowerInformation(): Fix 2 'sizeof(sizeof())' copypastas * test_ValidatePowerPolicies_Next(): Delete a duplicate line
This commit is contained in:
parent
0b9cbc5179
commit
02680ace4d
1 changed files with 2 additions and 3 deletions
|
@ -60,7 +60,7 @@ void test_CallNtPowerInformation(void)
|
|||
/* LastSleepTime tests */
|
||||
retval = CallNtPowerInformation(LastSleepTime, 0, 0, 0, 0);
|
||||
ok(retval == STATUS_SUCCESS, "function result wrong expected STATUS_SUCCESS but got %d\n", (UINT)retval);
|
||||
retval = CallNtPowerInformation(LastSleepTime, &atime, sizeof(sizeof(ULONGLONG)), 0, 0);
|
||||
retval = CallNtPowerInformation(LastSleepTime, &atime, sizeof(ULONGLONG), 0, 0);
|
||||
ok(retval == STATUS_INVALID_PARAMETER, "function result wrong expected STATUS_INVALID_PARAMETER but got %d\n", (UINT)retval);
|
||||
retval = CallNtPowerInformation(LastSleepTime, &atime, sizeof(ULONGLONG), &ctime, sizeof(ULONGLONG));
|
||||
ok(retval == STATUS_INVALID_PARAMETER, "function result wrong expected STATUS_INVALID_PARAMETER but got %d\n", (UINT)retval);
|
||||
|
@ -70,7 +70,7 @@ void test_CallNtPowerInformation(void)
|
|||
/* LastWakeTime tests */
|
||||
retval = CallNtPowerInformation(LastWakeTime, 0, 0, 0, 0);
|
||||
ok(retval == STATUS_SUCCESS, "function result wrong expected STATUS_SUCCESS but got %d\n", (UINT)retval);
|
||||
retval = CallNtPowerInformation(LastWakeTime, &atime, sizeof(sizeof(ULONGLONG)), 0, 0);
|
||||
retval = CallNtPowerInformation(LastWakeTime, &atime, sizeof(ULONGLONG), 0, 0);
|
||||
ok(retval == STATUS_INVALID_PARAMETER, "function result wrong expected STATUS_INVALID_PARAMETER but got %d\n", (UINT)retval);
|
||||
retval = CallNtPowerInformation(LastWakeTime, &atime, sizeof(ULONGLONG), &ctime, sizeof(ULONGLONG));
|
||||
ok(retval == STATUS_INVALID_PARAMETER, "function result wrong expected STATUS_INVALID_PARAMETER but got %d\n", (UINT)retval);
|
||||
|
@ -4621,7 +4621,6 @@ pPP_original->user.OptimizeForPowerDc=1;
|
|||
ok(ret, "function was expected to succeed error %i\n",(UINT)GetLastError());
|
||||
ok(globalcompare(gpp,gpp_compare),"Difference Found\n");
|
||||
pp_compare.user.MaxSleepAc=4;
|
||||
pp_compare.user.MaxSleepAc=4;
|
||||
ok(compare(pp,pp_compare),"Difference Found\n");
|
||||
|
||||
pPP_original->user.MaxSleepAc=PowerSystemShutdown;
|
||||
|
|
Loading…
Reference in a new issue