advapi32: Correct tests under WOW64 (try 2)

André Hentschel nerv at dawncrow.de
Sat Mar 10 10:44:12 CST 2012


Am 10.03.2012 17:37, schrieb Vitaliy Margolen:
> On 03/10/2012 12:36 AM, Alistair Leslie-Hughes wrote:
>> Hi,
>> Marked test as broken if it returns true.
>>
>> +    /* WoW64 return TRUE with the LastError set */
>> +    ok((!ret && GetLastError() == ERROR_INSUFFICIENT_BUFFER) || broken(ret),
>>          "%d with error %d\n", ret, GetLastError());
> 
> This is incorrect. You can check or report result of GetLastError(). But not both at the same time. You have to store the result in additional variable. Then compare and report it.

Really? That's quite common practice. The value won't change between the two GetLastError() calls.
The only thing which is bad is if you test a function inside the ok() macro and report the last error in the same ok().


-- 

Best Regards, André Hentschel



More information about the wine-devel mailing list