AutoTest: Rename results executable

Rename member to better reflect its meaning. It is used
as an identifier and might be something else than an
executable.

Change-Id: I082e3caaa3d94fcd7ab26ebc43bb0eb6da136d57
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2018-05-09 10:48:23 +02:00
committed by David Schulz
parent 1f3381a3c2
commit 78bd3f9ec3
13 changed files with 25 additions and 27 deletions

View File

@@ -47,6 +47,8 @@ public:
void reportCrash();
void createAndReportResult(const QString &message, Result::Type type);
bool hadValidOutput() const { return m_hadValidOutput; }
void setId(const QString &id) { m_id = id; }
QString id() const { return m_id; }
signals:
void newOutputAvailable(const QByteArray &output);
@@ -57,6 +59,7 @@ protected:
QFutureInterface<TestResultPtr> m_futureInterface;
QProcess *m_testApplication; // not owned
QString m_buildDir;
QString m_id;
private:
bool m_hadValidOutput = false;
};