Commit 744a0a69 authored by Denis Dydychkin's avatar Denis Dydychkin Committed by Facebook GitHub Bot

Temporarily disabling ConcurrentHashMapTest.ConcurrentInsertClear

Summary: ConcurrentHashMapTest.ConcurrentInsertClear is reported as flaky, see T111753832, T111745080, etc. Temporarily disabling the test while investigating the root cause. Preliminary observation is that folly::CPUThreadPoolExecutor/(anonymous namespace)::HazptrTPETag doesn't shutdown cleanly. Happens both to SIMD and regular version

Reviewed By: magedm

Differential Revision: D34147319

fbshipit-source-id: 8a9d9c71c4a42544df93fc48a324bd1299395719
parent 7046027a
...@@ -1047,7 +1047,7 @@ TYPED_TEST_P(ConcurrentHashMapTest, EraseClonedNonCopyable) { ...@@ -1047,7 +1047,7 @@ TYPED_TEST_P(ConcurrentHashMapTest, EraseClonedNonCopyable) {
EXPECT_EQ(iter->first, 256 * cloned); EXPECT_EQ(iter->first, 256 * cloned);
} }
TYPED_TEST_P(ConcurrentHashMapTest, ConcurrentInsertClear) { TYPED_TEST_P(ConcurrentHashMapTest, DISABLED_ConcurrentInsertClear) {
DeterministicSchedule sched(DeterministicSchedule::uniform(FLAGS_seed)); DeterministicSchedule sched(DeterministicSchedule::uniform(FLAGS_seed));
/* 8192 and 8x / 9x multipliers are values that tend to reproduce /* 8192 and 8x / 9x multipliers are values that tend to reproduce
...@@ -1140,7 +1140,7 @@ REGISTER_TYPED_TEST_SUITE_P( ...@@ -1140,7 +1140,7 @@ REGISTER_TYPED_TEST_SUITE_P(
HeterogeneousInsert, HeterogeneousInsert,
InsertOrAssignIterator, InsertOrAssignIterator,
EraseClonedNonCopyable, EraseClonedNonCopyable,
ConcurrentInsertClear); DISABLED_ConcurrentInsertClear);
using folly::detail::concurrenthashmap::bucket::BucketTable; using folly::detail::concurrenthashmap::bucket::BucketTable;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment