diff options
author | Johannes Schlüter <johannes@php.net> | 2007-05-03 12:44:48 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2007-05-03 12:44:48 +0000 |
commit | f50ec4ea53e6f628c5f37bf71a18a103fa52ce14 (patch) | |
tree | 3f996ab2d85debccbe76a8559a83c2d170d038cd | |
parent | 0a92fdba8ac6a4b4bcb91554af4f47dd3c171726 (diff) | |
download | php-git-f50ec4ea53e6f628c5f37bf71a18a103fa52ce14.tar.gz |
- MFH: Fix skipif
-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'); |