[KMTEST] Improve test output

svn path=/trunk/; revision=71094
This commit is contained in:
Timo Kreuzer 2016-04-03 14:05:58 +00:00
parent 43e5749a1d
commit bb8967851b

View file

@ -60,7 +60,9 @@ static void RtlSplayTreeTest()
sizeof(Text[i]),
&WasNew);
ok(Ch && *Ch == Text[i], "Copy character into node\n");
ok(WasNew == (NewE[i] == '1'), "Character newness didn't match\n");
ok(WasNew == (NewE[i] == '1'),
"Character newness didn't match for char %u: '%c'\n",
i, Text[i]);
}
for (Ch = (PCHAR)RtlEnumerateGenericTable(&Table, TRUE), i = 0;
Ch;