diff options
-rwxr-xr-x | Zend/tests/bug40236.phpt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/tests/bug40236.phpt b/Zend/tests/bug40236.phpt index 106784a70e..862eae5a97 100755 --- a/Zend/tests/bug40236.phpt +++ b/Zend/tests/bug40236.phpt @@ -1,7 +1,10 @@ --TEST-- Bug #40236 (php -a function allocation eats memory) --SKIPIF-- +<?php if (php_sapi_name() != "cli") die("skip CLI only"); +if (extension_loaded("readline")) die("skip Test doesn't support readline"); +?> --FILE-- <?php $php = getenv('TEST_PHP_EXECUTABLE'); |