Closedown

This commit is contained in:
boccioli_m
2016-01-15 10:13:43 +01:00
parent a7b8fd8337
commit f5e5157925
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
#TestingList for pshell: configuration properties
#Wed Jan 13 14:55:50 CET 2016
#Wed Jan 13 15:10:45 CET 2016
customPanel=
showEnabledTestsOnly=true
showEnabledTestsOnly=
listFilter=LabTests2

View File

@@ -9,14 +9,14 @@ def startTest(testName, DEVICE, params):
#by default, assume the test failed
ret = 'Test failed'
success = False
#plot name to be given to the scan. Use: scan.setPlotName(plotName)
plotName = DEVICE + ' - ' + testName
#put the whole custom code under try/catch
try:
#get the path of this script
testPath = inspect.getfile(inspect.currentframe())
#init the testing tool class. It can be sued in the following ways:
test = TestingTool(testName, testPath, DEVICE, params)
#plot name to be given to the scan. Use: scan.setPlotName(plotName)
plotName = test.getPlotName()
######### WRITE YOUR CODE HERE BELOW #############