Closedown

This commit is contained in:
boccioli_m
2017-08-29 11:15:36 +02:00
parent 04ab8ae8a0
commit 7c40f31bad
3 changed files with 3 additions and 3 deletions

View File

@@ -87,7 +87,7 @@ class TestingTool:
print now + ' ' + self.deviceName + ' - ' + self.testName + ': ' + 'cannot write Log in Data'
def printParameters(self, params):
def printParams(self, params):
"""
Print/log the pshell parameters
params = the JSON object with the parameters passed by pshell

View File

@@ -1,5 +1,5 @@
#TestingList for pshell: configuration properties
#Tue Aug 29 11:13:17 CEST 2017
#Tue Aug 29 11:13:34 CEST 2017
customPanel=
showEnabledTestsOnly=true
listFilter=test-bx84

View File

@@ -69,7 +69,7 @@ def startTest(testName, DEVICE, params):
# test.log("Example - Device name: " + test.getDeviceName() )
try:
test.log("Running test with the following parameters:")
test.log(params)
test.printParams(params)
# If present, use the parameters here below for your test script.
# These parameters were automatically generated: you might need to change the casting.
delay = float(test.getParam('delay')) ; centre = float(test.getParam('centre')) ; moveAround = float(test.getParam('moveAround')) ; steps = float(test.getParam('steps')) ;