-
Notifications
You must be signed in to change notification settings - Fork 741
[ICRDMA] Fix msan RDMA allocator tests. EXT-1788 #30642
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
The allocator is singleton object so we can't place tests with different settins in the one process. The attempt to use non static version of allocator was wrong due to TLS cache inside slot allocator. So right now we just split tests in to 2 process.
|
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
|
🟢 |
|
⚪ ⚪ Ya make output | Test bloat | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
Changelog entry
The allocator is a static object so we can't place tests with different settings in the one process. The attempt to use non static version of allocator was wrong due to TLS cache issues inside slot allocator. So right now we just split tests in to 2 processes.
Changelog category
Description for reviewers
...