Skip to content

Commit 00f49cd

Browse files
committed
Remove ASAN skipif for overflowing tests
Fixed by Arnaud!
1 parent a0fafcf commit 00f49cd

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

Zend/tests/property_hooks/backed_delegated_read_wirte.phpt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
Attempted read/write of backing value in a delegated method throws
33
--SKIPIF--
44
<?php
5-
if (getenv('SKIP_ASAN')) die('skip ASAN reports stack-overflow');
5+
if (!function_exists('zend_test_zend_call_stack_get')) die("skip zend_test_zend_call_stack_get() is not available");
66
?>
7+
--EXTENSIONS--
8+
zend_test
79
--INI--
810
; The test may use a large amount of memory on systems with a large stack limit
911
memory_limit=2G

Zend/tests/property_hooks/read_sibling_backing_value.phpt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
Attempted read/write of backing value in sibling property hook fails
33
--SKIPIF--
44
<?php
5-
if (getenv('SKIP_ASAN')) die('skip ASAN reports stack-overflow');
5+
if (!function_exists('zend_test_zend_call_stack_get')) die("skip zend_test_zend_call_stack_get() is not available");
66
?>
7+
--EXTENSIONS--
8+
zend_test
79
--INI--
810
; The test may use a large amount of memory on systems with a large stack limit
911
memory_limit=2G

Zend/tests/property_hooks/virtual_read_write.phpt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
Attempted read/write of virtual property backing value throws
33
--SKIPIF--
44
<?php
5-
if (getenv('SKIP_ASAN')) die('skip ASAN reports stack-overflow');
5+
if (!function_exists('zend_test_zend_call_stack_get')) die("skip zend_test_zend_call_stack_get() is not available");
66
?>
7+
--EXTENSIONS--
8+
zend_test
79
--INI--
810
; The test may use a large amount of memory on systems with a large stack limit
911
memory_limit=2G

0 commit comments

Comments
 (0)