Skip to content

Commit 594e002

Browse files
committed
Merge branch 'PHP-8.5'
* PHP-8.5: Reduce memory limit for gh19983.phpt
2 parents 67cbe09 + 72904a4 commit 594e002

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Zend/tests/fibers/gh19983.phpt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
--TEST--
22
GH-19983 (GC Assertion Failure with fibers, generators and destructors)
33
--SKIPIF--
4-
<?php if (PHP_INT_SIZE < 8) die("skip 64-bit only - fiber stacks exhaust 32-bit address space"); ?>
4+
<?php
5+
if (PHP_INT_SIZE < 8) die("skip 64-bit only - fiber stacks exhaust 32-bit address space");
6+
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
7+
?>
58
--INI--
6-
memory_limit=128M
9+
memory_limit=16M
710
--FILE--
811
<?php
912
class a

0 commit comments

Comments
 (0)