test(profiling): fix linking by removing recently added test#3570
test(profiling): fix linking by removing recently added test#3570morrisonlevi merged 1 commit intomasterfrom
Conversation
This reverts commit fa1f099.
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #3570 +/- ##
==========================================
+ Coverage 61.81% 61.90% +0.09%
==========================================
Files 140 140
Lines 13281 13281
Branches 1758 1758
==========================================
+ Hits 8209 8221 +12
+ Misses 4282 4272 -10
+ Partials 790 788 -2 see 2 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
Benchmarks [ profiler ]Benchmark execution time: 2026-01-13 02:11:31 Comparing candidate commit e30a526 in PR branch Found 0 performance improvements and 0 performance regressions! Performance is the same for 30 metrics, 6 unstable metrics. |
Description
This reverts commit fa1f099. The issue is that
ddog_php_test_create_fake_zend_function_with_name_lencreates a dependency on_emallocby usingzend_string_allocand then we fail to link in some cases.This went unnoticed due to merge order.
If we want to fix it "properly" then we need to link in the embed SAPI or similar to our tests, which seems like quite a bit of work for right now.
Reviewer checklist