This commit is contained in:
boccioli_m
2017-10-13 12:53:37 +02:00
parent c3144d4226
commit cbc49fde5d
5 changed files with 31 additions and 42 deletions
@@ -72,7 +72,7 @@ def startTest(testName, DEVICE, params):
test.printParams()
# If present, use the parameters here below for your test script.
# These parameters were automatically generated: you might need to change the casting.
mode = float(test.getParam('mode')) ; expectedVal14 = float(test.getParam('expectedVal14')) ; expectedVal58 = float(test.getParam('expectedVal58')) ; setGetDelay = float(test.getParam('setGetDelay')) ;
mode = string(test.getParam('mode')) ; expectedVal14 = int(test.getParam('expectedVal14')) ; expectedVal58 = int(test.getParam('expectedVal58')) ; setGetDelay = float(test.getParam('setGetDelay')) ;
except:
# test failed, write the report into the variables ret and success and send feedback:
ret = 'Could not retrieve testing parameters - ' + traceback.format_exc()