Building debugging helpers: Increase timeout to 80000ms.

Reviewed-by: hjk
This commit is contained in:
Friedemann Kleint
2010-10-06 14:56:18 +02:00
parent f28018ab5b
commit 2b047a2680

View File

@@ -217,7 +217,7 @@ QString BuildableHelperLibrary::buildHelper(const QString &helperName, const QSt
if (!makeFullPath.isEmpty()) { if (!makeFullPath.isEmpty()) {
output += QCoreApplication::translate("ProjectExplorer::BuildableHelperLibrary", "Running %1 ...\n").arg(makeFullPath); output += QCoreApplication::translate("ProjectExplorer::BuildableHelperLibrary", "Running %1 ...\n").arg(makeFullPath);
proc.start(makeFullPath, QStringList()); proc.start(makeFullPath, QStringList());
proc.waitForFinished(); proc.waitForFinished(80000);
output += proc.readAll(); output += proc.readAll();
} else { } else {
output += QCoreApplication::translate("ProjectExplorer::BuildableHelperLibrary", "%1 not found in PATH\n").arg(makeCommand); output += QCoreApplication::translate("ProjectExplorer::BuildableHelperLibrary", "%1 not found in PATH\n").arg(makeCommand);