Commit accfc06c authored by Robert Reif's avatar Robert Reif Committed by Alexandre Julliard

advapi32: Print more info about failed test.

parent 3f000d8c
......@@ -738,7 +738,7 @@ static void test_token_attr(void)
Name[0] = '\0';
Domain[0] = '\0';
ret = LookupAccountSid(NULL, Groups->Groups[i].Sid, Name, &NameLength, Domain, &DomainLength, &SidNameUse);
ok(ret, "LookupAccountSid failed with error %ld\n", GetLastError());
ok(ret, "LookupAccountSid(%s) failed with error %ld\n", SidString, GetLastError());
trace("\t%s, %s\\%s use: %d attr: 0x%08lx\n", SidString, Domain, Name, SidNameUse, Groups->Groups[i].Attributes);
LocalFree(SidString);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment