From 06aad8e62fd0b849996e187f1b2f4e88ed1de299 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Mon, 26 Mar 2012 04:15:25 +0200 Subject: initial import --- CPPUnitTest.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CPPUnitTest.py (limited to 'CPPUnitTest.py') diff --git a/CPPUnitTest.py b/CPPUnitTest.py new file mode 100644 index 0000000..4c9d977 --- /dev/null +++ b/CPPUnitTest.py @@ -0,0 +1,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) -- cgit v1.2.3