We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c576965 commit e31c4acCopy full SHA for e31c4ac
1 file changed
sapi/fpm/tests/gh9754-daemonized-stderr-close.phpt
@@ -10,6 +10,15 @@ FPM\Tester::skipIfRoot();
10
11
require_once "tester.inc";
12
13
+// TODO: fix leak on shutdown caused by alloc_globals_dtor not getting invoked
14
+$opts = getenv("ASAN_OPTIONS") ?: '';
15
+if ($opts) {
16
+ $opts .= ",detect_leaks=0";
17
+} else {
18
+ $opts = "detect_leaks=0";
19
+}
20
+putenv("ASAN_OPTIONS=$opts");
21
+
22
$cfg = <<<EOT
23
[global]
24
error_log = {{FILE:LOG}}
0 commit comments