diff options
author | Christian Stenger <christian.stenger@theqtcompany.com> | 2016-04-18 10:24:54 +0200 |
---|---|---|
committer | Christian Stenger <christian.stenger@theqtcompany.com> | 2016-04-18 11:01:50 +0000 |
commit | 104b434c8d39079f08f89dae52b52567cac35c8e (patch) | |
tree | f5d788c290f2840b235bab561128c8e370d4c0ac /src/plugins/autotest/testoutputreader.h | |
parent | 334017be56d91bc6535bde8fe68b2bdb055ab950 (diff) | |
download | qt-creator-104b434c8d39079f08f89dae52b52567cac35c8e.tar.gz |
AutoTest: Fix processing of output
In case a (Qt) test process produces output that does not belong
to the standard test output we might ended without processable
output at all.
Avoid this by just handling the output that is given on stdout
for now.
Change-Id: If5ee70140b95cb61422e58a7610b7fe2d09915c2
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
Diffstat (limited to 'src/plugins/autotest/testoutputreader.h')
-rw-r--r-- | src/plugins/autotest/testoutputreader.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/autotest/testoutputreader.h b/src/plugins/autotest/testoutputreader.h index 1c557d9dd7..facb69b601 100644 --- a/src/plugins/autotest/testoutputreader.h +++ b/src/plugins/autotest/testoutputreader.h @@ -49,6 +49,7 @@ public: protected: virtual void processOutput() = 0; + virtual void processStdError(); QFutureInterface<TestResultPtr> m_futureInterface; QProcess *m_testApplication; // not owned QString m_buildDir; |