aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2016-11-16 10:46:48 +0100
committerhjk <hjk@qt.io>2016-11-16 10:05:42 +0000
commitf0115b666493aade88b917fb3a26d395d0f654c9 (patch)
treecc40b16cb3d49fa1ad819effc3a5288877653a26
parentd7408f1fa8e5bcb85ab2818ab56528a4825b18fc (diff)
Debugger: Disable some of the LLDB inheritance dumper
Both LLDB 3.8/Linux and 360.x/Mac cannot display the contents of a virtual base class when accessed to a 'secondary' path. The problem is with LLDB itself, so don't expect Creator tests to pass in those cases. Change-Id: I25b005d66fa9f64766a4cc0aaaa2c865b6df8c5f Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index 1c4f3cb808..5bf80148b6 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -5986,19 +5986,20 @@ void tst_Dumpers::dumper_data()
+ Check("tt.@2.@1.v", "45", "int") % LldbEngine
+ Check("dd.@1.@1.a", "1", "int") // B::a
- + Check("dd.@2.@1.a", "1", "int") // C::a
+ // C::a - fails with command line LLDB 3.8/360.x
+ + Check("dd.@2.@1.a", "1", "int") % NoLldbEngine // C::a
+ Check("dd.@1.b", "2", "int")
+ Check("dd.@2.c", "3", "int")
+ Check("dd.d", "4", "int")
+ Check("dp.@1.@1.a", "1", "int") // B::a
- + Check("dp.@2.@1.a", "1", "int") // C::a
+ + Check("dp.@2.@1.a", "1", "int") % NoLldbEngine // C::a
+ Check("dp.@1.b", "2", "int")
+ Check("dp.@2.c", "3", "int")
+ Check("dp.d", "4", "int")
+ Check("dr.@1.@1.a", "1", "int") // B::a
- + Check("dr.@2.@1.a", "1", "int") // C::a
+ + Check("dr.@2.@1.a", "1", "int") % NoLldbEngine // C::a
+ Check("dr.@1.b", "2", "int")
+ Check("dr.@2.c", "3", "int")
+ Check("dr.d", "4", "int");