Page MenuHomePhabricator

Fix "PhutilOpaqueEnvelopeTestCase" under PHP 7.4 with "zend.exception_ignore_args"
ClosedPublic

Authored by epriestley on Sep 30 2020, 2:48 PM.
Tags
None
Referenced Files
F18764209: D21473.id51111.diff
Tue, Oct 7, 4:47 AM
F18714655: D21473.diff
Mon, Sep 29, 8:35 AM
F18628797: D21473.diff
Sep 16 2025, 7:18 AM
F18627493: D21473.diff
Sep 16 2025, 4:07 AM
F18599822: D21473.diff
Sep 13 2025, 8:19 AM
F18432283: D21473.diff
Aug 31 2025, 6:27 AM
F18345212: D21473.diff
Aug 26 2025, 11:08 AM
F18245437: D21473.diff
Aug 21 2025, 9:47 AM
Subscribers
None

Details

Summary

See PHI1894. PHP 7.4 introduced a new runtime configuration option, "zend.exception_ignore_args", which removes the "args" from exception backtraces.

The "PhutilOpaqueEnvelopeTestCase" relies on this behavior (since it explicitly inspects stack frames). Although the test isn't critical and could be restructured, it seems like there is little value to ever enabling this option in the context of Phabricator.

Disable it at startup so environments are more consistent across different PHP versions and configurations.

Test Plan
  • Enabled "zend.exception_ignore_args" under PHP 7.4.
  • Ran "PhutilOpaqueEnvelopeTestCase".
  • Before: failure, expected signpost value not present in stack trace (because no "args" are present on the exception).
  • After: test passes.

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision was not accepted when it landed; it landed in state Needs Review.Sep 30 2020, 2:49 PM
epriestley requested review of this revision.
This revision was automatically updated to reflect the committed changes.