summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-10-08 16:19:57 +0200
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-10-09 05:19:45 +0000
commit525c33f9991766342b41a0518b534836dc60ed69 (patch)
tree33f0bb24beeae02eb71e85c46e08943a033f0133 /tests
parentea39476ef2c0017f54021693ba545117ad53afa6 (diff)
downloadqt-creator-525c33f9991766342b41a0518b534836dc60ed69.tar.gz
Debugger: Infrastructure for reworked native mixed debugging
- Remove old experimental native mixed approach. - Move some common stack parsing to Stackhandler. - Mark gdbbridge.py debug output explicitly to remove it from actual reponse handling New native mixed needs QtDeclarative changes and QTC_DEBUGGER_NATIVE_MIXED=1 for now. Change-Id: I09eed1da51cea878636d36756015b7bfaed34203 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index 4e86a343db..c04d79b1de 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -1258,7 +1258,8 @@ void tst_Dumpers::dumper()
if (m_debuggerEngine == GdbEngine) {
const QFileInfo gdbBinaryFile(QString::fromLatin1(exe));
- const QByteArray uninstalledData = gdbBinaryFile.absolutePath().toLocal8Bit() + "/data-directory/python";
+ const QByteArray uninstalledData = gdbBinaryFile.absolutePath().toLocal8Bit()
+ + "/data-directory/python";
args << QLatin1String("-i")
<< QLatin1String("mi")
@@ -1280,8 +1281,9 @@ void tst_Dumpers::dumper()
"python from gdbbridge import *\n"
"python theDumper.setupDumpers()\n"
"run " + nograb + "\n"
- "python theDumper.showData({'fancy':1,'forcens':1,'autoderef':1,"
- "'dyntype':1,'passExceptions':1,'expanded':[" + expandedq + "]})\n";
+ "python theDumper.fetchVariables({'fancy':1,'forcens':1,"
+ "'autoderef':1,'dyntype':1,'passExceptions':1,"
+ "'expanded':[" + expandedq + "]})\n";
cmds += "quit\n";