Author: tkreuzer Date: Sun Apr 3 14:05:58 2016 New Revision: 71094
URL: http://svn.reactos.org/svn/reactos?rev=71094&view=rev Log: [KMTEST] Improve test output
Modified: trunk/rostests/kmtests/rtl/RtlSplayTree.c
Modified: trunk/rostests/kmtests/rtl/RtlSplayTree.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/kmtests/rtl/RtlSplayTree.c... ============================================================================== --- trunk/rostests/kmtests/rtl/RtlSplayTree.c [iso-8859-1] (original) +++ trunk/rostests/kmtests/rtl/RtlSplayTree.c [iso-8859-1] Sun Apr 3 14:05:58 2016 @@ -60,7 +60,9 @@ 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;