更改 ant junit 任务中的工作目录
我有一个运行 JUnits 测试的 ant 文件。这些测试依赖于某些配置文件的相对路径。我尝试设置批量测试的工作目录,但失败。
我希望工作目录为 ${plugins.dir}/${name}
ant 脚本的 JUnit 部分:
<junit haltonfailure="no" printsummary="on" fork="true" showoutput="true" dir="${plugins.dir}/${name}">
<jvmarg value="-Duser.dir=${plugins.dir}/${name}"/>
<classpath>
<path refid="project.classpath"/>
<pathelement location="${plugins.dir}/${dependency}/@dot/"/>
<pathelement location="${plugins.dir}/${name}/" />
</classpath>
<formatter type="xml" />
<sysproperty key="basedir" value="${plugins.dir}/${name}"/>
<sysproperty key="dir" value="${plugins.dir}/${name}"/>
<batchtest todir="${junit.output}">
<fileset dir="${dir}">
<include name="**\*AllTests.class" />
</fileset>
</batchtest>
</junit>
我已经用 google 进行了搜索,但我发现的解决方法是设置“dir”、“sysproperty”或“jvmarg”。正如你所看到的,我已经尝试了所有这些:)
有没有办法打印标签中的当前目录?它不支持 .这将使我能够验证目录是否实际上已更改以及更改了什么。
这个等式中的一个通配符是,它正在 Hudson 中运行,它启动了一个启动 antrunner 的 eclipse 进程。这样我们就可以运行 junit 和 eclipse 插件 junit 测试。我认为应该与这个问题没有任何关系。
I have a ant file that runs JUnits tests. These tests rely on a relative path to certain configuration files. I've tried to set the working directory for the batch test, but fail.
I want the working directory to be ${plugins.dir}/${name}
The JUnit part of the ant script:
<junit haltonfailure="no" printsummary="on" fork="true" showoutput="true" dir="${plugins.dir}/${name}">
<jvmarg value="-Duser.dir=${plugins.dir}/${name}"/>
<classpath>
<path refid="project.classpath"/>
<pathelement location="${plugins.dir}/${dependency}/@dot/"/>
<pathelement location="${plugins.dir}/${name}/" />
</classpath>
<formatter type="xml" />
<sysproperty key="basedir" value="${plugins.dir}/${name}"/>
<sysproperty key="dir" value="${plugins.dir}/${name}"/>
<batchtest todir="${junit.output}">
<fileset dir="${dir}">
<include name="**\*AllTests.class" />
</fileset>
</batchtest>
</junit>
I've googled and searched but the workarounds I've found have been to set the "dir", "sysproperty" or "jvmarg". As you can see I've tried them all :)
Is there a way to print the current dir in the tag? It doesnt support . That would allow me to verify if the dir is actually changed and to what.
One wildcard in this equation is that this is being run in Hudson that starts upp an eclipse process that starts antrunner. This is so we can run both junit and eclipse plugin junit tests. Shouldn't have anything to do with the problem I think.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您设置 basedir 属性是正确的(请参阅项目属性)。然而,由于它是 ANT(而不是 JVM)的属性,因此它是只读的!
如果在调用 ant 任务时设置 basedir 是否会影响其他目标?请参阅命令行参考。
或者,跨越一个新的 ant 进程来调用您的 junit 目标。请参阅 AntCall 任务 或 Ant 任务。以下示例假设 junit 目标包含您的 junit 任务。我将此任务用于其他属性(到目前为止从未需要 basedir 属性。
I think you are right with setting the basedir property (see projects attributes). However, since it is a property of ANT (and not of the JVM) it is READ ONLY!
Does it effect other target if you set the basedir when calling your ant task? See Command Line reference.
Alternatively, span a new ant process to call your junit target. See the AntCall task or Ant task. Following examples assumes that the junit target contains your junit task. I used this task for other properties (never needed the basedir property so far.
我有同样的场景,在我的例子中,我看到如果在同一个 jvm 中运行,
dir="...."
会被忽略,所以我只是添加了fork='true'
它起作用了。引用 Apache 的文档站点“dir - 调用 VM 的目录。如果禁用 fork,则忽略。”。更多信息请此处。
I had the same scenario and in my case I saw that
dir="...."
is ignored if run in same jvm so I simply addedfork='true'
and it worked.Quote from Apache's documentation site "dir - The directory in which to invoke the VM. Ignored if fork is disabled.". More here.
我正在使用 NetBeans。当我添加到 Ant 属性(从“工具”、“选项”、“Java”、“Ant”)
work.dir=C:/MyWorkingDir/
时,它会使用以下命令执行ant
并更改工作目录到C:\MyWorkingDir
:I'm using NetBeans. When I add to Ant properties (from Tools, Options, Java, Ant)
work.dir=C:/MyWorkingDir/
it executesant
with the following command and changes the working dir toC:\MyWorkingDir
: