Commit 10b7b81e authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Add index of failing test to output.

parent 44e7d7b6
...@@ -1984,10 +1984,10 @@ static void test_encodeBits(DWORD dwEncoding) ...@@ -1984,10 +1984,10 @@ static void test_encodeBits(DWORD dwEncoding)
if (buf) if (buf)
{ {
ok(bufSize == bits[i].encoded[1] + 2, ok(bufSize == bits[i].encoded[1] + 2,
"Got unexpected size %d, expected %d\n", bufSize, "%d: Got unexpected size %d, expected %d\n", i, bufSize,
bits[i].encoded[1] + 2); bits[i].encoded[1] + 2);
ok(!memcmp(buf, bits[i].encoded, bits[i].encoded[1] + 2), ok(!memcmp(buf, bits[i].encoded, bits[i].encoded[1] + 2),
"Unexpected value\n"); "%d: Unexpected value\n", i);
LocalFree(buf); LocalFree(buf);
} }
} }
......
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