summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2017-03-22 14:19:50 +0100
committerDavid Schulz <david.schulz@qt.io>2017-03-28 09:22:28 +0000
commit86edeb9722d55a4a62d8803fc4115ff254692bd4 (patch)
treeea5ae9e9d9bd96c33bf58770272c2b6ee679838e /tests
parent3aa13958fde29b6f4fb0cad407a3cc9cf1b273c9 (diff)
downloadqt-creator-86edeb9722d55a4a62d8803fc4115ff254692bd4.tar.gz
Debugger: Use native value for pointer dereference
Change-Id: Ibde6ff382e7adc0c196837c9eba04391c0a2c3a0 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index b7b2f6057b..7f5cd801f8 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -6152,7 +6152,6 @@ void tst_Dumpers::dumper_data()
"Derived d;\n"
"Base *b = &d;\n"
"unused(&d, &b);\n")
- + NoCdbEngine // FIXME
+ Check("b.@1.a", "a", "21", "int")
+ Check("b.b", "b", "42", "int");
@@ -6185,8 +6184,6 @@ void tst_Dumpers::dumper_data()
"unused(&c);\n"
"Base2 *b2 = &d; // This has the right address\n"
"unused(&b2);\n")
- + NoCdbEngine // FIXME
-
+ Check("c.b2.@1.foo", "42", "int")
+ Check("c.b2.@2.bar", "43", "int")
+ Check("c.b2.baz", "84", "int")