From c0c5aad8e647603908978e7def9426b298b57907 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 12 Apr 2016 15:41:45 +0200 Subject: [PATCH] Debugger: Adapt dumper test to base class sorting Fallout from e73a9c1b0df93. Change-Id: If06ba8424bd264137dcdcdd721317ce6785a91b0 Reviewed-by: Christian Stenger --- tests/auto/debugger/tst_dumpers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index 2dc8cf9410c..ca16c84c757 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -3928,8 +3928,8 @@ void tst_Dumpers::dumper_data() + Check("l3.2", "[2]", "2", "int") % NoCdbEngine + Check("l3.2.*", "*", "2", "int") % CdbEngine - + Check("l4.@2.0", "[0]", "1", "int") % NoCdbEngine - + Check("l4.@2.1", "[1]", "2", "int") % NoCdbEngine + + Check("l4.@1.0", "[0]", "1", "int") % NoCdbEngine + + Check("l4.@1.1", "[1]", "2", "int") % NoCdbEngine + Check("l4.list@t1.0", "[0]", "1", "int") % CdbEngine + Check("l4.list@t1.1", "[1]", "2", "int") % CdbEngine;