Maemo: Check for presence of Mad Developer in device test.

Task-number: QTCREATORBUG-2150
Reviewed-by: kh1
This commit is contained in:
Christian Kandeler
2010-08-27 15:24:48 +02:00
parent e3fd16f6ea
commit ae8e57bc9a
3 changed files with 58 additions and 15 deletions

View File

@@ -68,7 +68,8 @@ private slots:
void processSshOutput(const QByteArray &output);
void handleConnected();
void handleConnectionError();
void handleProcessFinished(int exitStatus);
void handleInfoProcessFinished(int exitStatus);
void handleMadDeveloperTestProcessFinished(int exitStatus);
private:
void startConfigTest();
@@ -79,7 +80,8 @@ private:
const MaemoDeviceConfig &m_config;
QSharedPointer<Core::SshConnection> m_connection;
QSharedPointer<Core::SshRemoteProcess> m_testProcess;
QSharedPointer<Core::SshRemoteProcess> m_infoProcess;
QSharedPointer<Core::SshRemoteProcess> m_madDeveloperTestProcess;
QString m_deviceTestOutput;
bool m_qtVersionOk;
};