From 302be8acb92a06b0f790e67d4e2321a45bac89a4 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Fri, 28 Jun 2019 09:19:00 +0200 Subject: Debugger: Fix qdir dumper test for cdb entryInfoList and entryList is not supported by cdb, because we cannot call the count function to populate these lists. Change-Id: I6f1f2b5905232d4b220120b1b0a20bfea029c9f0 Reviewed-by: Christian Stenger --- tests/auto/debugger/tst_dumpers.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index c912f726aad..8c3a17f4e18 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -2064,10 +2064,10 @@ void tst_Dumpers::dumper_data() + Check("dir", quoted(tempDir), "@QDir") // + Check("dir.canonicalPath", quoted(tempDir), "@QString") + Check("dir.absolutePath", quoted(tempDir), "@QString") % Optional() - + Check("dir.entryInfoList.0", "[0]", quoted(tempDir + "/."), "@QFileInfo") - + Check("dir.entryInfoList.1", "[1]", quoted(tempDir + "/.."), "@QFileInfo") - + Check("dir.entryList.0", "[0]", "\".\"", "@QString") - + Check("dir.entryList.1", "[1]", "\"..\"", "@QString"); + + Check("dir.entryInfoList.0", "[0]", quoted(tempDir + "/."), "@QFileInfo") % NoCdbEngine + + Check("dir.entryInfoList.1", "[1]", quoted(tempDir + "/.."), "@QFileInfo") % NoCdbEngine + + Check("dir.entryList.0", "[0]", "\".\"", "@QString") % NoCdbEngine + + Check("dir.entryList.1", "[1]", "\"..\"", "@QString") % NoCdbEngine; QTest::newRow("QFileInfo") -- cgit v1.2.3