views:

29

answers:

1

I am using Hudson to continuously integrate a project using JTReg testing framework. As far as I know, jtreg doesn't output JUnit-style XML reports. Is there a way to publish jtreg tests into Hudson reporting?

I saw an IcedTea blog post about integrating Hudson with a slightly-modified version of jtreg, but I cannot find that version.

Has anyone built a converter tool that, given jtreg reports, will generate JUnit reports?

A: 

Take a look at the xUnit plugin. It is designed to read in test results from any unit test framework.

Michael Donohue
Thanks! Unfortunately, it doesn't claim to support jtreg!
notnoop
Yes, the whole point of the xunit plugin is that you can write a simple XSL conversion for any XML file format - including jtreg.
Michael Donohue