forked from qt-creator/qt-creator
ios: always write out when a run ends
Currently normal end of an ios run is silent. This looks strange as the startup writes a string. Change-Id: I64d082153b11ff6db4d6b1d85bce1da143cf329d Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
@@ -150,9 +150,11 @@ void IosAnalyzeSupport::handleGotInferiorPid(Q_PID pid, int qmlPort)
|
||||
|
||||
void IosAnalyzeSupport::handleRemoteProcessFinished(bool cleanEnd)
|
||||
{
|
||||
Q_UNUSED(cleanEnd)
|
||||
if (m_runControl) {
|
||||
m_runControl->logApplicationMessage(tr("Run ended."), Utils::NormalMessageFormat);
|
||||
if (!cleanEnd)
|
||||
m_runControl->logApplicationMessage(tr("Run ended with error."), Utils::ErrorMessageFormat);
|
||||
else
|
||||
m_runControl->logApplicationMessage(tr("Run ended."), Utils::NormalMessageFormat);
|
||||
m_runControl->notifyRemoteFinished();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -226,10 +226,13 @@ void IosDebugSupport::handleGotInferiorPid(Q_PID pid, int qmlPort)
|
||||
|
||||
void IosDebugSupport::handleRemoteProcessFinished(bool cleanEnd)
|
||||
{
|
||||
if (!cleanEnd && m_runControl)
|
||||
m_runControl->showMessage(tr("Run failed unexpectedly."), AppStuff);
|
||||
//m_runControl->engine()->notifyInferiorIll();
|
||||
m_runControl->engine()->abortDebugger();
|
||||
if (m_runControl) {
|
||||
if (!cleanEnd)
|
||||
m_runControl->showMessage(tr("Run ended with error."), AppStuff);
|
||||
else
|
||||
m_runControl->showMessage(tr("Run ended."), AppStuff);
|
||||
m_runControl->engine()->abortDebugger();
|
||||
}
|
||||
}
|
||||
|
||||
void IosDebugSupport::handleRemoteOutput(const QString &output)
|
||||
|
||||
@@ -77,7 +77,9 @@ RunControl::StopResult IosRunControl::stop()
|
||||
void IosRunControl::handleRemoteProcessFinished(bool cleanEnd)
|
||||
{
|
||||
if (!cleanEnd)
|
||||
appendMessage(tr("Run ended unexpectedly."), Utils::ErrorMessageFormat);
|
||||
appendMessage(tr("Run ended with error."), Utils::ErrorMessageFormat);
|
||||
else
|
||||
appendMessage(tr("Run ended."), Utils::NormalMessageFormat);
|
||||
disconnect(m_runner, 0, this, 0);
|
||||
m_running = false;
|
||||
emit finished();
|
||||
|
||||
Reference in New Issue
Block a user