gpt4 book ai didi

ant - 如何在 Ant JUnit 目标中将 stderr 重定向到 stdout?

转载 作者:行者123 更新时间:2023-12-04 23:53:27 29 4
gpt4 key购买 nike

我有一个简单的 Ant 构建文件来生成 XML 格式的 JUnit 测试报告(见下文)。这会生成一份报告,其中包含每个测试方法在 stdout 和 stderr 上的输出(如果有)。对于每种测试方法,我希望将两个流的输出合并为一个。但是我不确定该怎么做;我如何告诉 JUnit 目标将 stderr 重定向到 stdout?

<target name="test" depends="compile">
<junit>
<classpath refid="classpath.tests"/>
<formatter type="xml"/>
<test name="tests.Tests1"/>
<test name="tests.Tests2"/>
</junit>
</target>

最佳答案

ant test | grep -w junit 2>&1

备用选项是:使用 q 选项运行 Ant。

ant -q test

关于ant - 如何在 Ant JUnit 目标中将 stderr 重定向到 stdout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11049512/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com