diff options
author | Xinchen Hui <laruence@gmail.com> | 2015-11-13 14:00:01 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2015-11-13 14:00:01 +0800 |
commit | 310fc87c2dba1bc9d29e09c213adae325aa14bb9 (patch) | |
tree | 7930dc705cd84e27ad87191e805607880893ef76 | |
parent | 04526093e4afa7cbe0f0c01f2a914229ef3fd45b (diff) | |
download | php-git-310fc87c2dba1bc9d29e09c213adae325aa14bb9.tar.gz |
SKIP on slow debug version PHP
-rw-r--r-- | Zend/tests/concat_003.phpt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/tests/concat_003.phpt b/Zend/tests/concat_003.phpt index 7dbc9ca8c4..07fabd1113 100644 --- a/Zend/tests/concat_003.phpt +++ b/Zend/tests/concat_003.phpt @@ -1,5 +1,7 @@ --TEST-- Concatenating many small strings should not slowdown allocations +--SKIPIF-- +<?php if (PHP_DEBUG) { die ("skip debug version is slow"); } ?> --INI-- memory_limit=256m --FILE-- |