Has anyone used cFix (Visual Assert) along with Jenkins CI? How to set it up? How can i execute C++ Project Tests (Testt Framework cFix{isualAssert) via Jenkins?
Any poi
I wrote a small program to convert cFix output to XML. I used the simplest Junit XML format recognized by jenkins for my program output.
<?xml version="1.0" encoding="UTF-8"?>
<testsuite>
<testcase name="TestIsOpen" classname="A.B">
<error type="error">Details</error>
</testcase>
<testcase name="TestAcceptDialPassed" classname="A.C">
</testcase>
<testcase name="TestAcceptDialSkipped" classname="A.C">
<skipped>wrong version</skipped>
</testcase>
</testsuite>
If you can convert your output to the JUnit XML output format, Jenkins should be able to read it for you. You can find the JUnit format all over Google, and if needed, you can see the stylesheet on the website below.
We were using Cunit, which has XML output, but not a standard that Jenkins understands, and so I did was follow this website. That stylesheet should be able to help you understand the JUNit format too.