Skip to content

Commit 6d79763

Browse files
committed
Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
* 'PHP-7.1' of git.php.net:/php-src: Fixed bug #67707 IV not needed for ECB encryption mode, but it returns a warning Add support for "xfail" to phpt SKIPIF sections Fixed #73907 (nextSibling property not included in var_dump of DOMNode) Fixed bug #61858 (DOMAttr debug info generates E_WARNING) Fix glob-wrapper.phpt to not fail in Windows Set a session path for this test Fix #73893: A hidden danger of death cycle in a function of gd Missing %s Ok, maybe Nikita is right. We should default this on. Missed one. This needs gc as well These tests expect gc to be enabled
2 parents d5553b9 + 5999874 commit 6d79763

24 files changed

+106
-232
lines changed

Zend/tests/bug63734.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #63734 (Garbage collector can free zvals that are still referenced)
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57
class C {

Zend/tests/bug69446.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #69446 (GC leak relating to removal of nested data after dtors run)
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57
$bar = NULL;

Zend/tests/bug69446_2.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #69446 (GC leak relating to removal of nested data after dtors run)
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57
$bar = NULL;

Zend/tests/bug69534.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #69534 (Cycle leaks through declared properties on internal classes)
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57
class Node extends SplObjectStorage {

Zend/tests/bug70805_1.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #70805 (Segmentation faults whilst running Drupal 8 test suite) (Crash)
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57
class A {

Zend/tests/bug70805_2.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #70805 (Segmentation faults whilst running Drupal 8 test suite) (Memleak)
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57
class A {

Zend/tests/bug71818.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #71818 (Memory leak when array altered in destructor)
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57
class MemoryLeak

Zend/tests/gc_033.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
GC 033: Crash in GC while run with phpspec
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57
$a = new stdClass();

Zend/tests/gc_035.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
GC 035: Lost inner-cycles garbage
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57
class A {

Zend/tests/generators/gc_with_yield_from.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Verify yield from on generators being properly cycle collected
3+
--INI--
4+
zend.enable_gc = 1
35
--FILE--
46
<?php
57

0 commit comments

Comments
 (0)