From bb8967851b453d28291dc38c83a650cdcf4e4e82 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sun, 3 Apr 2016 14:05:58 +0000 Subject: [PATCH 1/1] [KMTEST] Improve test output svn path=/trunk/; revision=71094 --- rostests/kmtests/rtl/RtlSplayTree.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rostests/kmtests/rtl/RtlSplayTree.c b/rostests/kmtests/rtl/RtlSplayTree.c index 1e4b739b4d2..db0e32a6276 100644 --- a/rostests/kmtests/rtl/RtlSplayTree.c +++ b/rostests/kmtests/rtl/RtlSplayTree.c @@ -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; -- 2.17.1