aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/api/runenvironment.cpp
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2018-06-14 12:07:38 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2018-06-14 11:40:27 +0000
commita838fd23288370e4e9898b30d9b57803d93a6597 (patch)
treeb87c5d381a8a3cec0dfc3ef4edfabb44fb099406 /src/lib/corelib/api/runenvironment.cpp
parenta666dedaad7d63d758f57f6e58ca285f80b5f0cd (diff)
Call QProcess::waitForFinished with timeout of -1
The default value of 30 s can be too short for environments like virtual machines under heavy load. Task-number: QBS-1360 Change-Id: I83af7740dc842faf8795f5901f36744229160154 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/lib/corelib/api/runenvironment.cpp')
-rw-r--r--src/lib/corelib/api/runenvironment.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/corelib/api/runenvironment.cpp b/src/lib/corelib/api/runenvironment.cpp
index d803639a8..bf973cbc4 100644
--- a/src/lib/corelib/api/runenvironment.cpp
+++ b/src/lib/corelib/api/runenvironment.cpp
@@ -311,7 +311,7 @@ int RunEnvironment::doRunTarget(const QString &targetBin, const QStringList &arg
<< QStringLiteral("-t") // allow test packages
<< QStringLiteral("-d") // allow version code downgrade
<< targetBin);
- if (!process.waitForFinished()) {
+ if (!process.waitForFinished(-1)) {
if (process.error() == QProcess::FailedToStart) {
throw ErrorInfo(Tr::tr("The process '%1' could not be started: %2")
.arg(targetExecutable)
@@ -351,7 +351,7 @@ int RunEnvironment::doRunTarget(const QString &targetBin, const QStringList &arg
<< StringConstants::simctlInstallCommand()
<< simulatorId
<< QDir::cleanPath(bundlePath));
- if (!process.waitForFinished()) {
+ if (!process.waitForFinished(-1)) {
if (process.error() == QProcess::FailedToStart) {
throw ErrorInfo(Tr::tr("The process '%1' could not be started: %2")
.arg(targetExecutable)