在 Phing 上执行命令时没有输出

No output when executing a command on Phing

我有以下构建文件:

<?xml version="1.0" encoding="UTF-8"?>
<project name="Example" default="test" description="Sample Description">
    <target name="test">
        <exec command="ls" dir="./" />
    </target>
</project>

但是 Phing 似乎 运行 这个命令没有输出任何东西:

Buildfile: /path/to/build/file/build.xml

Example > test:


BUILD FINISHED

Total time: 0.2106 seconds

我该如何解决这个问题?

注意phpunit测试

你应该使用参数

passthru="true"

更多信息请见https://www.phing.info/docs/guide/trunk/ExecTask.html