Increase znc-buildmod timeout in the test.

For some slow systems 30s is too small.
This commit is contained in:
Alexey Sokolov
2019-04-19 12:13:44 +01:00
parent 9966bea961
commit 964747e6b4
4 changed files with 16 additions and 15 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ Process::Process(QString cmd, QStringList args,
Process::~Process() {
if (m_kill) m_proc.terminate();
bool bFinished = m_proc.waitForFinished();
bool bFinished = m_proc.waitForFinished(1000 * m_finishTimeoutSec);
EXPECT_TRUE(bFinished);
if (!bFinished) return;
if (!m_allowDie) {