Hudson, C++ and UnitTest++

前端 未结 6 946
迷失自我
迷失自我 2021-01-30 02:53

Has anyone used Hudson as a Continuous-Integration server for a C++ project using UnitTest++ as a testing library?

How exactly did you set it up?

I know there ha

6条回答
  •  Happy的楠姐
    2021-01-30 03:19

    I use hudson with CppUnit and xml output. The xml are translated by xslt to a JUnit output like. CppUnit site provides an xslt that convert CppUnit output to JUnit output. I have hacked it a bit in order to get mre details like :

    • namespaces as packages
    • execution time

    you may transform your xml output to get the following:

    
    
       
          
       
       ....
    
    

    In case of success : just remove the sub tag

    Regards

提交回复
热议问题