diff options
author | Xinchen Hui <laruence@gmail.com> | 2016-04-15 11:58:13 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2016-04-15 11:58:13 +0800 |
commit | a8c4d9e09d9f352f2c679351eb37a449985d14fc (patch) | |
tree | 45bb12d41e8e210a80d33a7122585ba20884a19f /sapi/cli | |
parent | d57505e23451549fd273a7bafb7bb6f655113fee (diff) | |
parent | 163d26d5842bbc7faf600fa769add468acb53eaf (diff) | |
download | php-git-a8c4d9e09d9f352f2c679351eb37a449985d14fc.tar.gz |
Merge branch 'PHP-7.0'
* PHP-7.0:
Fixed failed with libedit
Diffstat (limited to 'sapi/cli')
-rw-r--r-- | sapi/cli/tests/bug64529.phpt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sapi/cli/tests/bug64529.phpt b/sapi/cli/tests/bug64529.phpt index 8452953baf..7331b8303e 100644 --- a/sapi/cli/tests/bug64529.phpt +++ b/sapi/cli/tests/bug64529.phpt @@ -5,6 +5,9 @@ Bug #64529 (Ran out of opcode space) if (substr(PHP_OS, 0, 3) == "WIN") { die("skip non windows test"); } +if (!extension_loaded("readline") || !readline_info("done")) { + die("skip readline support required"); +} exec('which expect', $output, $ret); if ($ret) { die("skip no expect installed"); |