-
Notifications
You must be signed in to change notification settings - Fork 5.3k
[HTTP] Stress fix for ASAN preload #122926
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
Conversation
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
|
Tagging subscribers to this area: @dotnet/ncl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR attempts to fix ASAN (Address Sanitizer) preload issues in the HTTP stress test Docker container by ensuring GCC is explicitly installed and updating the ASAN library path.
Key Changes:
- Explicitly adds
gccto the apt-get install command to ensure GCC is available in the container - Updates the LD_PRELOAD path from GCC version 13 to version 15
src/libraries/System.Net.Http/tests/StressTests/HttpStress/Dockerfile
Outdated
Show resolved
Hide resolved
|
/azp run runtime-libraries stress-http |
|
Azure Pipelines successfully started running 1 pipeline(s). |
|
It helped, see log from main: vs log from this PR: When merged, I'll backport it to 10.0. |
…kerfile Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
/azp run runtime-libraries stress-http |
|
Azure Pipelines successfully started running 1 pipeline(s). |
|
/ba-g unrelated |
|
/backport to release/10.0 |
|
Started backporting to |
Backport of #122926 to release/10.0 /cc @ManickaP ## Customer Impact - [ ] Customer reported - [x] Found internally ## Regression - [ ] Yes - [x] No ## Testing CI ## Risk Low, test only change. --------- Co-authored-by: ManickaP <mapichov@microsoft.com> Co-authored-by: Marie Píchová <11718369+ManickaP@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Install GCC and load asan from the new place.