Skip to content

Commit 5286bab

Browse files
committed
[skip ci] Skip arginfo_zpp_mismatch on asan
These tests intermittently crash asan. It might be due to some function invoking dl(), which is known to crash lsan. It might also be something else, the version of asan shipped with ubuntu 22.04 is flaky.
1 parent 107443b commit 5286bab

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Zend/tests/arginfo_zpp_mismatch.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Test that there is no arginfo/zpp mismatch
33
--SKIPIF--
44
<?php
5+
if (getenv('SKIP_ASAN')) die("skip Intermittently crashes lsan");
56
if (getenv('SKIP_MSAN')) die("skip msan misses interceptors for some functions");
67
?>
78
--FILE--

Zend/tests/arginfo_zpp_mismatch_strict.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Test that there is no arginfo/zpp mismatch in strict mode
33
--SKIPIF--
44
<?php
5+
if (getenv('SKIP_ASAN')) die("skip Intermittently crashes lsan");
56
if (getenv('SKIP_MSAN')) die("skip msan misses interceptors for some functions");
67
?>
78
--FILE--

0 commit comments

Comments
 (0)