forked from qt-creator/qt-creator
debugger: fix test automation
Change-Id: I11bf4c597747fdae658954b7193ac3ee4f39b06f Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -1729,7 +1729,6 @@ void DebuggerEnginePrivate::handleAutoTestLine(int line)
|
||||
reportTestError(_("'Check' needs arguments."), line);
|
||||
} else if (name.contains(QChar('.'))) {
|
||||
m_engine->showMessage(_("variable %1 found in line %2 contains '.', but 'Expand' is not implemented yet.").arg(name).arg(line));
|
||||
handleAutoTestLine(line + 1);
|
||||
} else {
|
||||
QByteArray iname = "local." + name.toLatin1();
|
||||
QString found = m_engine->watchHandler()->displayForAutoTest(iname);
|
||||
@@ -1754,7 +1753,6 @@ void DebuggerEnginePrivate::handleAutoTestLine(int line)
|
||||
reportTestError(_("'CheckType' needs arguments."), line);
|
||||
} else if (name.contains(QChar('.'))) {
|
||||
m_engine->showMessage(_("variable %1 found in line %2 contains '.', but 'Expand' is not implemented yet.").arg(name).arg(line));
|
||||
handleAutoTestLine(line + 1);
|
||||
} else {
|
||||
QByteArray iname = "local." + name.toLatin1();
|
||||
QString found = m_engine->watchHandler()->displayForAutoTest(iname);
|
||||
|
||||
Reference in New Issue
Block a user