Are there any extensions to HUnit or QuickCheck that allow a continuous integration system like Bamboo to do detailed reporting of test results?

So far, my best idea is to simply trigger the tests as part of a build script, and rely on the tests to fail with a non-zero exit code. This is effective for getting attention when a test fails, but confuses build failures with test failures and requires wading through console output to determine the problem's source.

If this is the best option with current tools, my thought is to write a reporting module for HUnit that would produce output in the JUnit XML format, then point the CI tool at it as though it were reporting on a Java project. This seems somewhat hackish, though, so I'd appreciate your thoughts both on existing options and directions for new development.

link|improve this question

1  
Mimicking JUnit XML format seems like a pretty decent way to get the most bang for your coding buck. See if HUnit already has support for it though. QuickCheck is a bit trickier, because it's not really traditional XUnit style, though you could probably shoehorn it as well. – Edward Z. Yang Jul 11 '11 at 2:25
maybe slightly related: stackoverflow.com/questions/4687387/organizing-haskell-tests – hvr Jul 11 '11 at 5:28
feedback

1 Answer

up vote 8 down vote accepted

The test-framework package provides tools for integrating tests using different testing paradigms, including HUnit and QuickCheck, and its console test runner can be passed a flag that makes it produce JUnit-compatible XML. We use it with Jenkins for continuous integration.

Invocation example:

$ ./test --jxml=test-results.xml
link|improve this answer
Btw, did you manage to integrate code-coverage graphing as well in Jenkins? – hvr Jul 11 '11 at 5:27
Thanks for this! I agree with @hvr that it would be very cool to integrate hpc reports as well. It shouldn't be too hard with hpc markup... – acfoltzer Jul 11 '11 at 16:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.