Closedown

This commit is contained in:
boccioli_m
2015-09-02 11:10:11 +02:00
parent a46914e6ac
commit 4d4d5522b2
2 changed files with 41 additions and 4 deletions
@@ -1,15 +1,15 @@
#########################################
###### DO NOT MODIFY THE CODE BELOW #####
#########################################
global print_log, sendFeedback, sys, inspect, os, traceback, testcommons
import sys, inspect, os, traceback, testcommons
global sendFeedback, sys, inspect, os, traceback
import sys, inspect, os, traceback
def startTest(testName, DEVICE, params):
#get the path of this script
import inspect
testPath = inspect.getfile(inspect.currentframe())
test = testcommons.TestingTool(testName, DEVICE, testPath)
test = TestingTool(testName, DEVICE, testPath)
test.print_pio()
#by default, failed
ret = 'Test failed'