Closedown

This commit is contained in:
boccioli_m
2015-09-02 11:01:12 +02:00
parent bc7bc455ba
commit 9cee7bc1fe
2 changed files with 14 additions and 21 deletions

View File

@@ -20,14 +20,14 @@ class TestingTool:
print now + ' ' + DEVICE + ' - ' + testName + ': ' + str(text)
#prepare and send feedback to calling tool
def sendFeedback(self, testPath, testName, DEVICE, returnString, testPassed):
def sendFeedback(self, returnString, testPassed):
print_log(testName, DEVICE, 'End of test. Result:')
print_log(testName, DEVICE, 'Device: ' + DEVICE)
print_log(testName, DEVICE, 'Test name: ' + testName)
print_log(testName, DEVICE, 'Test path: ' + testPath)
print_log(testName, DEVICE, 'Device: ' + self.deviceName)
print_log(testName, DEVICE, 'Test name: ' + self.testName)
print_log(testName, DEVICE, 'Test path: ' + self.testPath)
print_log(testName, DEVICE, 'Test passed: ' + str(testPassed))
print_log(testName, DEVICE, 'Return string: ' + returnString)
ret = [testPath, DEVICE, returnString, testPassed]
ret = [self.testPath, self.deviceName, returnString, testPassed]
return ret