]> granicus.if.org Git - php/commitdiff
Skip tests reply on Zend MM turned on
authorReeze Xia <reeze.xia@gmail.com>
Fri, 10 Aug 2012 16:34:37 +0000 (00:34 +0800)
committerReeze Xia <reeze.xia@gmail.com>
Fri, 10 Aug 2012 16:34:37 +0000 (00:34 +0800)
Those two tests have expect memory exhausted fatal error

ext/oci8/tests/pecl_bug10194_blob.phpt
ext/standard/tests/strings/str_pad_variation5.phpt

index faf87ab3c16018255bd5a994cc314aab79c52e5d..96f94bcf4c16a88a1e8301fd33223942d01cfa9e 100644 (file)
@@ -6,6 +6,9 @@ $target_dbs = array('oracledb' => true, 'timesten' => false);  // test runs on t
 require(dirname(__FILE__).'/skipif.inc');
 if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platforms only");
 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=3M
index 4b300c4717d05e26d6edab9c7d7f59bd80888ddd..cd979a1c8b163f0487ec15d3b83de7bc67fd540f 100644 (file)
@@ -5,6 +5,9 @@ memory_limit=128M
 --SKIPIF--
 <?php
 if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
+if (getenv("USE_ZEND_ALLOC") === "0") {
+    die("skip Zend MM disabled");
+}
 ?>
 --FILE--
 <?php