aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/testoutputreader.h
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2016-07-21 16:02:42 +0200
committerChristian Stenger <christian.stenger@qt.io>2016-09-05 12:40:59 +0000
commit053f5bf3d3d72d2e1c2c59fbe3b6f472ac6d91d4 (patch)
tree13b5310641a50b2e785fb8c95db59bde6de4cd7b /src/plugins/autotest/testoutputreader.h
parente0e314427d0eda63adf0132f1337d8462089abfe (diff)
AutoTest: Show results for debugging tests as well
At least display results for using gdb or lldb and inform user that we are not able to do so when using cdb. Task-number: QTCREATORBUG-16693 Change-Id: I1a98a79aaf76de47b5dcb58d4dca9247f1642d36 Reviewed-by: David Schulz <david.schulz@qt.io> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/autotest/testoutputreader.h')
-rw-r--r--src/plugins/autotest/testoutputreader.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/autotest/testoutputreader.h b/src/plugins/autotest/testoutputreader.h
index d1082f0a659..237f23c6aca 100644
--- a/src/plugins/autotest/testoutputreader.h
+++ b/src/plugins/autotest/testoutputreader.h
@@ -42,9 +42,10 @@ public:
TestOutputReader(const QFutureInterface<TestResultPtr> &futureInterface,
QProcess *testApplication, const QString &buildDirectory);
-protected:
virtual void processOutput(const QByteArray &outputLine) = 0;
virtual void processStdError(const QByteArray &output);
+
+protected:
QFutureInterface<TestResultPtr> m_futureInterface;
QProcess *m_testApplication; // not owned
QString m_buildDir;