0

I have an executable with unit tests (my custom framework) and I want to run it after each build using Hudson.

I would expect to register my exe as a Hudson step and make sure it produces the correct report format.

So far all tutorials I have found seem like overkilling with all the configuration files and interfaces. I'll go that path if I need - but what's the simplest way to achieve what I want? I'm looking for a good link with a "template" that I can adjust for my needs.

Yaron Naveh
  • 23,560
  • 32
  • 103
  • 158

1 Answers1

3

I think that creating an app for this is overkill, you could probably do a post build step that runs and generates junit output format.

Goodluck.

Mahdi Yusuf
  • 19,931
  • 26
  • 72
  • 101
  • We did it that way too: http://stackoverflow.com/questions/6329215/how-to-get-ctest-results-in-hudson-jenkins – MOnsDaR Jul 28 '11 at 05:37