make test 报错

来源:互联网 发布:飞利浦脱毛仪 知乎 编辑:程序博客网 时间:2024/06/07 16:44

make test 有出错
make test 有报错:
Build complete.
Don’t forget to run ‘make test’.
+———————————————————–+
| ! ERROR ! |
| The test-suite requires that proc_open() is available. |
| Please check if you disabled it in php.ini. |
+———————————————
解决方法:

vi /usr/local/php/etc/php.ini
找到disable_functions = shell_exec, system, passthru, exec, popen, proc_open
改为disable_functions = shell_exec, system, passthru, exec, popen
保存退出。
接着

make test
通过测试