rasmus Wed, 03 Mar 2010 17:53:15 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=295800
Log: Turn on gc before we test it Changed paths: U php/php-src/branches/PHP_5_3/Zend/tests/gc_004.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_005.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_006.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_007.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_008.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_009.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_010.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_011.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_012.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_013.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_014.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_015.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_016.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_017.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_018.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_019.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_020.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_021.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_022.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_023.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_024.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_025.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_027.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_028.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_029.phpt U php/php-src/branches/PHP_5_3/Zend/tests/gc_030.phpt U php/php-src/trunk/Zend/tests/gc_004.phpt U php/php-src/trunk/Zend/tests/gc_005.phpt U php/php-src/trunk/Zend/tests/gc_006.phpt U php/php-src/trunk/Zend/tests/gc_007.phpt U php/php-src/trunk/Zend/tests/gc_008.phpt U php/php-src/trunk/Zend/tests/gc_009.phpt U php/php-src/trunk/Zend/tests/gc_010.phpt U php/php-src/trunk/Zend/tests/gc_011.phpt U php/php-src/trunk/Zend/tests/gc_012.phpt U php/php-src/trunk/Zend/tests/gc_013.phpt U php/php-src/trunk/Zend/tests/gc_014.phpt U php/php-src/trunk/Zend/tests/gc_015.phpt U php/php-src/trunk/Zend/tests/gc_016.phpt U php/php-src/trunk/Zend/tests/gc_017.phpt U php/php-src/trunk/Zend/tests/gc_018.phpt U php/php-src/trunk/Zend/tests/gc_019.phpt U php/php-src/trunk/Zend/tests/gc_020.phpt U php/php-src/trunk/Zend/tests/gc_021.phpt U php/php-src/trunk/Zend/tests/gc_022.phpt U php/php-src/trunk/Zend/tests/gc_023.phpt U php/php-src/trunk/Zend/tests/gc_024.phpt U php/php-src/trunk/Zend/tests/gc_025.phpt U php/php-src/trunk/Zend/tests/gc_028.phpt U php/php-src/trunk/Zend/tests/gc_029.phpt U php/php-src/trunk/Zend/tests/gc_030.phpt
Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_004.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_004.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_004.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 004: Simple array cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_005.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_005.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_005.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 005: Simple object cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_006.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_006.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_006.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 006: Simple array-object cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_007.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_007.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_007.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 007: Unreferensed array cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_008.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_008.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_008.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 008: Unreferensed object cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_009.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_009.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_009.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 009: Unreferensed array-object cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_010.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_010.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_010.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 010: Cycle with reference to $GLOBALS +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_011.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_011.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_011.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 011: GC and destructors +--INI-- +zend.enable_gc=1 --FILE-- <?php class Foo { Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_012.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_012.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_012.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 012: collection of many loops at once +--INI-- +zend.enable_gc=1 --FILE-- <?php $a=array(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_013.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_013.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_013.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 013: Too many cycles in one array +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_014.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_014.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_014.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 014: Too many cycles in one object +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_015.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_015.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_015.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 015: Object as root of cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_016.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_016.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_016.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 016: nested GC calls +--INI-- +zend.enable_gc=1 --FILE-- <?php class Foo { Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_017.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_017.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_017.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 017: GC and destructors with unset +--INI-- +zend.enable_gc=1 --FILE-- <?php class Node { Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_018.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_018.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_018.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 018: GC detach with assign +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_019.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_019.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_019.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 019: GC detach with assign by reference +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_020.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_020.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_020.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 020: GC detach reference with assign +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_021.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_021.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_021.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 021: GC detach reference with assign by reference +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_022.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_022.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_022.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -2,6 +2,7 @@ GC 022: GC detach reference in executor's PZVAL_UNLOCK() --INI-- error_reporting=0 +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_023.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_023.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_023.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 023: Root buffer overflow (automatic collection) +--INI-- +zend.enable_gc=1 --FILE-- <?php $a=array(); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_024.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_024.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_024.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 024: GC and objects with non-standard handlers +--INI-- +zend.enable_gc=1 --SKIPIF-- <?php if (!extension_loaded("spl")) print "skip"; ?> --FILE-- Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_025.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_025.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_025.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 025: Automatic GC on request shutdown +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_027.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_027.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_027.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 027: GC and properties of internal classes +--INI-- +zend.enable_gc=1 --FILE-- <?php try { Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_028.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_028.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_028.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 028: GC and destructors +--INI-- +zend.enable_gc=1 --FILE-- <?php class Foo { Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_029.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_029.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_029.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 029: GC and destructors +--INI-- +zend.enable_gc=1 --FILE-- <?php class Foo { Modified: php/php-src/branches/PHP_5_3/Zend/tests/gc_030.phpt =================================================================== --- php/php-src/branches/PHP_5_3/Zend/tests/gc_030.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/branches/PHP_5_3/Zend/tests/gc_030.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 030: GC and exceptions in destructors +--INI-- +zend.enable_gc=1 --FILE-- <?php class foo { @@ -28,4 +30,4 @@ Stack trace: #0 %sgc_030.php(%d): foo->__destruct() #1 {main} - thrown in %sgc_030.php on line %d \ No newline at end of file + thrown in %sgc_030.php on line %d Modified: php/php-src/trunk/Zend/tests/gc_004.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_004.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_004.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 004: Simple array cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/trunk/Zend/tests/gc_005.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_005.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_005.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 005: Simple object cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/trunk/Zend/tests/gc_006.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_006.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_006.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 006: Simple array-object cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/trunk/Zend/tests/gc_007.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_007.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_007.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 007: Unreferensed array cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/trunk/Zend/tests/gc_008.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_008.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_008.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 008: Unreferensed object cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/trunk/Zend/tests/gc_009.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_009.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_009.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 009: Unreferensed array-object cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/trunk/Zend/tests/gc_010.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_010.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_010.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 010: Cycle with reference to $GLOBALS +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/trunk/Zend/tests/gc_011.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_011.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_011.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 011: GC and destructors +--INI-- +zend.enable_gc=1 --FILE-- <?php class Foo { Modified: php/php-src/trunk/Zend/tests/gc_012.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_012.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_012.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 012: collection of many loops at once +--INI-- +zend.enable_gc=1 --FILE-- <?php $a=array(); Modified: php/php-src/trunk/Zend/tests/gc_013.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_013.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_013.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 013: Too many cycles in one array +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/trunk/Zend/tests/gc_014.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_014.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_014.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 014: Too many cycles in one object +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/trunk/Zend/tests/gc_015.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_015.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_015.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 015: Object as root of cycle +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = new stdClass(); Modified: php/php-src/trunk/Zend/tests/gc_016.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_016.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_016.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 016: nested GC calls +--INI-- +zend.enable_gc=1 --FILE-- <?php class Foo { Modified: php/php-src/trunk/Zend/tests/gc_017.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_017.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_017.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 017: GC and destructors with unset +--INI-- +zend.enable_gc=1 --FILE-- <?php class Node { Modified: php/php-src/trunk/Zend/tests/gc_018.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_018.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_018.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 018: GC detach with assign +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/trunk/Zend/tests/gc_019.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_019.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_019.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 019: GC detach with assign by reference +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/trunk/Zend/tests/gc_020.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_020.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_020.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 020: GC detach reference with assign +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/trunk/Zend/tests/gc_021.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_021.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_021.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 021: GC detach reference with assign by reference +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(); Modified: php/php-src/trunk/Zend/tests/gc_022.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_022.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_022.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -2,6 +2,7 @@ GC 022: GC detach reference in executor's PZVAL_UNLOCK() --INI-- error_reporting=0 +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/trunk/Zend/tests/gc_023.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_023.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_023.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 023: Root buffer overflow (automatic collection) +--INI-- +zend.enable_gc=1 --FILE-- <?php $a=array(); Modified: php/php-src/trunk/Zend/tests/gc_024.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_024.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_024.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 024: GC and objects with non-standard handlers +--INI-- +zend.enable_gc=1 --SKIPIF-- <?php if (!extension_loaded("spl")) print "skip"; ?> --FILE-- Modified: php/php-src/trunk/Zend/tests/gc_025.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_025.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_025.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 025: Automatic GC on request shutdown +--INI-- +zend.enable_gc=1 --FILE-- <?php $a = array(array()); Modified: php/php-src/trunk/Zend/tests/gc_028.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_028.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_028.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 028: GC and destructors +--INI-- +zend.enable_gc=1 --FILE-- <?php class Foo { Modified: php/php-src/trunk/Zend/tests/gc_029.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_029.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_029.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 029: GC and destructors +--INI-- +zend.enable_gc=1 --FILE-- <?php class Foo { Modified: php/php-src/trunk/Zend/tests/gc_030.phpt =================================================================== --- php/php-src/trunk/Zend/tests/gc_030.phpt 2010-03-03 17:45:25 UTC (rev 295799) +++ php/php-src/trunk/Zend/tests/gc_030.phpt 2010-03-03 17:53:15 UTC (rev 295800) @@ -1,5 +1,7 @@ --TEST-- GC 030: GC and exceptions in destructors +--INI-- +zend.enable_gc=1 --FILE-- <?php class foo {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php