]> granicus.if.org Git - php/commitdiff
Skip test while zend mm is disabled
authorXinchen Hui <laruence@php.net>
Sun, 29 Jul 2012 05:25:31 +0000 (13:25 +0800)
committerXinchen Hui <laruence@php.net>
Sun, 29 Jul 2012 05:25:31 +0000 (13:25 +0800)
ext/oci8/tests/pecl_bug10194.phpt
ext/oci8/tests/pecl_bug10194_blob_64.phpt
tests/lang/bug45392.phpt

index 9947e15dbcf8e52268f5eee106f98df61e28959f..3c1c7887c2fbcb3aeea7981b1540cd1e61c74745 100644 (file)
@@ -5,6 +5,9 @@ PECL Bug #10194 (segfault in Instant Client when memory_limit is reached inside
 $target_dbs = array('oracledb' => true, 'timesten' => false);  // test runs on these DBs
 require(dirname(__FILE__).'/skipif.inc');
 if (getenv('SKIP_SLOW_TESTS')) die('skip slow tests excluded by request');
+if (getenv("USE_ZEND_ALLOC") === "0") {
+    die("skip Zend MM disabled");
+}
 ?> 
 --INI--
 memory_limit=10M
index 45788a41b430dae18b83a37a9de6d3d173ed06bd..e1a4cc034e2d37cfe01d9bb47a1159f63a2219a0 100644 (file)
@@ -6,6 +6,9 @@ $target_dbs = array('oracledb' => true, 'timesten' => false);  // test runs on t
 require(dirname(__FILE__).'/skipif.inc');
 if (getenv('SKIP_SLOW_TESTS')) die('skip slow tests excluded by request');
 if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
+if (getenv("USE_ZEND_ALLOC") === "0") {
+    die("skip Zend MM disabled");
+}
 ?>
 --INI--
 memory_limit=6M
index ae84cd9d1dd9a532b2c5558e6e8ffaf4a778b62d..78876c7c8033dabea27ca7ec1de6b97449f1c313 100644 (file)
@@ -2,6 +2,11 @@
 Bug #45392 (ob_start()/ob_end_clean() and memory_limit)
 --INI--
 display_errors=stderr
+--SKIPIF--
+<?php
+if (getenv("USE_ZEND_ALLOC") === "0") {
+    die("skip Zend MM disabled");
+} 
 --FILE--
 <?php
 echo __LINE__ . "\n";