[jboss-jira] [JBoss JIRA] (JGRP-1725) JGroups testsuite output not processed correctly on Windows
Richard Achmatowicz (JIRA)
jira-events at lists.jboss.org
Wed Oct 30 18:03:01 EDT 2013
[ https://issues.jboss.org/browse/JGRP-1725?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12826014#comment-12826014 ]
Richard Achmatowicz commented on JGRP-1725:
-------------------------------------------
The problem here is in JUnitXMLReporter.
The classes MyOutput which are used to redirect System.out and System.err from test cases into per-test case files needs to initialise itself with a temporary file name. The file name hard-coded in the class is "/tmp/tmp.txt". On non-Windows hosts, this file name works fine; on Windows hosts, it causes the initialization of the redirection to fail with a FileNotFoundException:
{noformat}
public void onStart(ITestContext context) {
output_dir=context.getOutputDirectory();
// Uncomment to delete dir created by previous run of this testsuite
File dir=new File(output_dir);
if(dir.exists())
deleteContents(dir);
try {
System.setOut(new MyOutput(1));
System.setErr(new MyOutput(2));
}
catch(FileNotFoundException e) {
// EXCEPTION OCCURS HERE
}
}
{noformat}
Because the output redirection failed, all output goes to the console.
> JGroups testsuite output not processed correctly on Windows
> -----------------------------------------------------------
>
> Key: JGRP-1725
> URL: https://issues.jboss.org/browse/JGRP-1725
> Project: JGroups
> Issue Type: Bug
> Affects Versions: 3.5
> Environment: Windows
> Reporter: Richard Achmatowicz
> Assignee: Bela Ban
> Fix For: 3.5
>
>
> When running the testsuite on Windows, testsuite output ends up on the console and not in the test case reports.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list