aboutsummaryrefslogblamecommitdiffstats
path: root/CPPUnitTest.py
blob: 4c9d9775d3c2655e0e0989aa02429cea4ded1491 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                      
from buildbot.steps.shell import Test

class CPPUnitTest(Test):
    def __init__(self, **kwargs):
        Test.__init__(self, **kwargs) # always upcall!

    def finished(self,result):
        self.addURL("test-results", "/" + str(self.getProperty("buildername")) + "/" +
                    str(self.getProperty("buildnumber")) + "/tests/test.xml")
        Test.finished(self, result)