summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-06-15 21:11:34 -0400
committerAshod Nakashian <ashnakash@gmail.com>2016-06-16 01:46:13 +0000
commit3ab13873ebb6dc4738be2e2184ee4433a2447c1d (patch)
tree11821b493a59050cab9963d2f3744dd0091932be /comphelper
parent75ca2defe8edba8d198a05e7f64674418171536d (diff)
Expect fewer than MAX_CONCURRENCY threads in test
Change-Id: I4346b6d79b46bccb5b79e27744c3cf80aa88fc9a Reviewed-on: https://gerrit.libreoffice.org/26344 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/qa/unit/threadpooltest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/qa/unit/threadpooltest.cxx b/comphelper/qa/unit/threadpooltest.cxx
index a90d5b0e1db6..388dffab7f55 100644
--- a/comphelper/qa/unit/threadpooltest.cxx
+++ b/comphelper/qa/unit/threadpooltest.cxx
@@ -31,7 +31,7 @@ void ThreadPoolTest::testPreferredConcurrency() {
// Check default.
auto nThreads = comphelper::ThreadPool::getPreferredConcurrency();
sal_Int32 nExpected = 4; // UTs are capped to 4.
- CPPUNIT_ASSERT_EQUAL(nExpected, nThreads);
+ CPPUNIT_ASSERT_MESSAGE("Expected no more than 4 threads", nExpected >= nThreads);
#ifndef _WIN32_WINNT
// The result should be cached, so this should change anything.