You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[#16813] docdb: Remove SegmentedQueue from LockfreeTest.QueuePerformance
Summary:
This test was meant to measure the performance of various lockfree queues in libcds. It seems that SegmentedQueue calls `delete` with a size on gcc11, but the size does not match what was allocated. This causes tcmalloc to segfault with the following error:
```
size check failed 160 32 3
```
This queue is not used anywhere else in our code, so it should be fine to remove it from this test. I also opened an issue with libcds here: khizmax/libcds#181.
Jira: DB-6160
Test Plan: `ybd --gcc11 --cxx_test lockfree-test --gtest_filter="LockfreeTest.QueuePerformance"`
Reviewers: sergei
Reviewed By: sergei
Subscribers: yql, ybase
Differential Revision: https://phorge.dev.yugabyte.com/D27843
0 commit comments