diff options
author | Xinchen Hui <laruence@php.net> | 2012-07-29 13:25:31 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2012-07-29 13:25:31 +0800 |
commit | 880a6cee0068e980fd1eed735675d9b7d37968a0 (patch) | |
tree | 8a9a9bc7a85a7545bffc390949c201b5a07a001d | |
parent | 14cebefb058ec4f78d61a5a520da699b121fb306 (diff) | |
download | php-git-880a6cee0068e980fd1eed735675d9b7d37968a0.tar.gz |
Skip test while zend mm is disabled
-rw-r--r-- | ext/oci8/tests/pecl_bug10194.phpt | 3 | ||||
-rw-r--r-- | ext/oci8/tests/pecl_bug10194_blob_64.phpt | 3 | ||||
-rw-r--r-- | tests/lang/bug45392.phpt | 5 |
3 files changed, 11 insertions, 0 deletions
diff --git a/ext/oci8/tests/pecl_bug10194.phpt b/ext/oci8/tests/pecl_bug10194.phpt index 9947e15dbc..3c1c7887c2 100644 --- a/ext/oci8/tests/pecl_bug10194.phpt +++ b/ext/oci8/tests/pecl_bug10194.phpt @@ -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 diff --git a/ext/oci8/tests/pecl_bug10194_blob_64.phpt b/ext/oci8/tests/pecl_bug10194_blob_64.phpt index 45788a41b4..e1a4cc034e 100644 --- a/ext/oci8/tests/pecl_bug10194_blob_64.phpt +++ b/ext/oci8/tests/pecl_bug10194_blob_64.phpt @@ -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 diff --git a/tests/lang/bug45392.phpt b/tests/lang/bug45392.phpt index ae84cd9d1d..78876c7c80 100644 --- a/tests/lang/bug45392.phpt +++ b/tests/lang/bug45392.phpt @@ -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"; |