summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-07-27 10:58:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-07-27 11:02:28 +0100
commit5733910b2b3ac82cb3cf7a1be6b3576c2e97145e (patch)
treef7e21bafeb533bed3a8d7d97101b446d0114c321 /comphelper
parent93f9a32cdf720ee76f56f987a1ded2fd89145659 (diff)
change from a 2 min dbgutil failure to a 3 min
to try and align with the crashtesting timeout Change-Id: Ife3a4a3d63bbb9d9d5b612675e3728900262bf6c
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/threadpool.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/threadpool.cxx b/comphelper/source/misc/threadpool.cxx
index 6846f4b2f5f3..45425fbe778d 100644
--- a/comphelper/source/misc/threadpool.cxx
+++ b/comphelper/source/misc/threadpool.cxx
@@ -336,8 +336,8 @@ void ThreadTaskTag::waitUntilDone()
#endif
#ifdef DBG_UTIL
- // 2 minute timeout in debug mode so our tests fail sooner rather than later
- osl::Condition::Result rv = maTasksComplete.wait(TimeValue { 2*60, 0 });
+ // 3 minute timeout in debug mode so our tests fail sooner rather than later
+ osl::Condition::Result rv = maTasksComplete.wait(TimeValue { 3*60, 0 });
assert(rv != osl::Condition::result_timeout);
#else
// 10 minute timeout in production so the app eventually throws some kind of error