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

View File

@@ -1,5 +1,5 @@
#Fri Oct 13 12:10:12 CEST 2017
name=newdev
tests=RPS Tests Betriebsmode
parameters=pv&PXXF\:VAL\:2&ssp;ds&2,IQCOM,$BMA1,1,DIA&vla;
parameters="pv"&"PXXF\:VAL\:2"&"ssp";"ds"&"2,IQCOM,$BMA1,1,DIA"&"vla";
description=del

View File

@@ -1,5 +1,5 @@
#TestingList for pshell: configuration properties
#Fri Oct 13 12:22:31 CEST 2017
#Fri Oct 13 12:53:24 CEST 2017
customPanel=
showEnabledTestsOnly=
listFilter=rps-try

View File

@@ -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()