Closedown

This commit is contained in:
boccioli_m
2015-09-02 10:19:38 +02:00
parent 4b928738ae
commit 679d331098
2 changed files with 6 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ def sendFeedback(testPath, testName, DEVICE, returnString, testPassed):
print_log(testName, DEVICE, 'Test passed: ' + str(testPassed))
print_log(testName, DEVICE, 'Return string: ' + returnString)
ret = [testPath, DEVICE, returnString, testPassed]
set_return(ret)
return ret
pippo = 'pippo'

View File

@@ -6,7 +6,11 @@ import sys, inspect, os, traceback, testcommons
def print_log(testName, DEVICE, text):
testcommons.print_log(testName, DEVICE, text)
def sendFeedback(testPath, testName, DEVICE, returnString, testPassed):
ret = testcommons.sendFeedback(testPath, testName, DEVICE, returnString, testPassed)
set_return(ret)
def startTest(testName, DEVICE, params):
#get the path of this script
testcommons.print_pio()