This commit is contained in:
boccioli_m
2015-09-02 10:39:31 +02:00
parent 3936d45b5e
commit 79e9aac763
748 changed files with 684 additions and 53722 deletions

View File

@@ -1,211 +0,0 @@
#Script Motor Test 2
#Go to absolute position A, then move +B steps, then -2B steps, then +2Bsteps (ie oscillate round centre position, logging after each movement); repeat N times
from startup import *
from local import *
import sys, inspect, os, traceback, time
###### DO NOT MODIFY THE CODE BELOW ######
def startTest(testName, DEVICE, params):
#get the path of this script
testPath = inspect.getfile(inspect.currentframe())
#by default, failed
ret = 'Test failed'
status = False
#plot name to be given to the scan. Use: scan.setPlotName(plotName)
plotName = DEVICE + ' - ' + testName
###### WRITE YOUR CODE HERE BELOW #######
#get parameters from the calling interface
try:
print_log(testName, DEVICE, "Running test Motor Test 2 for device " + DEVICE + " with the following parameters:\n" + str(params))
middle = 40.0 #float(params["midPoint"]["value"])
loopTimes = 1 #int(params["repeatTimes"]["value"])
span = 2 # float(params["spanFromMidPoint"]["value"])
except:
ret = 'Could not retrieve testing parameters - ' + traceback.format_exc()
success = False
sendFeedback(testPath, testName, DEVICE, ret, status)
return
#scan = ManualScan(['idX'], ['idMotorStatus', 'idLogicalPosition', 'idDiameter', 'idMotorPosition', 'idPotiRaw', 'idPotiProc', 'idBtvsRaw', 'idBtvsProc', 'idDiff01', 'idDiff02'] , [ 0.0], [ 3000.0], [20])
scan = ManualScan(['idX'], ['idMotorStatus', 'idLogicalPosition', 'idDiameter', 'idMotorPosition', 'idPotiRaw', 'idPotiProc', 'idBtvsRaw', 'idBtvsProc', 'idDiff01', 'idDiff02'])
scan.setPlotName(plotName)
scan.start()
#Creating channels: dimension 1
try:
#RegionPositioner idInkr
#idInkr = Channel(DEVICE+':INKR:2', type = 'd')
idInkr = Channel(DEVICE+':MOTOR.VAL', type = 'd')
#ScalarDetector idMotorStatus
#idMotorStatus = Channel(DEVICE+':STA:1', type = 'd')
idMotorStatus = Channel(DEVICE+':MOTOR.MSTA', type = 'd')
#ScalarDetector idLogicalPosition
#idLogicalPosition = Channel(DEVICE+':IST:2', type = 'd')
idLogicalPosition = Channel(DEVICE+':MOTOR.RVAL', type = 'd')
#ScalarDetector idDiameter
#idDiameter = Channel(DEVICE+':DIAM:2', type = 'd')
idDiameter = Channel(DEVICE+':ENCODERoff', type = 'd')
#ScalarDetector idMotorPosition
#idMotorPosition = Channel(DEVICE+':IST1:2', type = 'd')
idMotorPosition = Channel(DEVICE+':MOTOR.RBV', type = 'd')
#ScalarDetector idPotiRaw
#idPotiRaw = Channel(DEVICE+':POSA:1', type = 'd')
idPotiRaw = Channel(DEVICE+':ENCODERraw', type = 'd')
#ScalarDetector idPotiProc
#idPotiProc = Channel(DEVICE+':POSA:2', type = 'd')
idPotiProc = Channel(DEVICE+':ENCODER', type = 'd')
#ScalarDetector idBtvsRaw
#idBtvsRaw = Channel(DEVICE+':IST3:1', type = 'd')
idBtvsRaw = Channel(DEVICE+':MOTOR.LLS', type = 'd')
#ScalarDetector idBtvsProc
#idBtvsProc = Channel(DEVICE+':IST3:2', type = 'd')
idBtvsProc = Channel(DEVICE+':MOTOR.HLS', type = 'd')
#ScalarDetector idEndSwitchL
#idBtvsRaw = Channel(DEVICE+':IST3:1', type = 'd')
idEndSwitchL = Channel(DEVICE+':MOTOR.LLS', type = 'd')
#ScalarDetector idEndSwitchH
#idBtvsProc = Channel(DEVICE+':IST3:2', type = 'd')
idEndSwitchH = Channel(DEVICE+':MOTOR.HLS', type = 'd')
#high position limit
idLimitH = Channel(DEVICE+':MOTOR.HLM', type = 'd')
#low position limit
idLimitL = Channel(DEVICE+':MOTOR.LLM', type = 'd')
except:
ret = 'Unable to create channel - ' + traceback.format_exc()
success = False
sendFeedback(testPath, testName, DEVICE, ret, status)
return
#remove limits
idLimitH.put(999999.9, timeout=None)
idLimitL.put(-999999.9, timeout=None)
direction = 1.0
startDefault = middle - span
endDefault = middle + span
end = endDefault+1
#find position: it will be the middle point of the test
print_log(testName, DEVICE, 'Moving to middle point ' + str(middle) )
idInkr.put(middle, timeout=None) # TODO: Set appropriate timeout
readback2 = idInkr.get()
if abs(readback2 - middle) > 1 : # TODO: Check accuracy
ret = 'Actor idInkr could not be set to the value ' + str(middle) + ' (current value: ' + str(readback2) + ')'
success = False
sendFeedback(testPath, testName, DEVICE, ret, status)
return
start = readback2+direction
countSteps = 0
count = 0
print_log(testName, DEVICE, 'Moving around middle point (+-' + str(span) + ')' )
for setpoint1 in range(0, loopTimes*2):
count = count + 1
sleep( 2 ) # Settling time
#RegionPositioner idInkr
for setpoint2 in frange(start, end, direction):
readback1 = setpoint1
idInkr.put(setpoint2, timeout=None) # TODO: Set appropriate timeout
sleep( 0.2 ) # Settling time
readback2 = idInkr.get()
if abs(readback2 - setpoint2) > 1 : # TODO: Check accuracy
ret = 'Actor idInkr could not be set to the value ' + str(setpoint2) + ' (current value: ' + str(readback2) + ')'
success = False
sendFeedback(testPath, testName, DEVICE, ret, status)
return
#Detector idMotorStatus
detector1 = idMotorStatus.get()
#Detector idLogicalPosition
detector2 = idLogicalPosition.get()
#Detector idDiameter
detector3 = idDiameter.get()
#Detector idMotorPosition
detector4 = idMotorPosition.get()
#Detector idPotiRaw
detector5 = idPotiRaw.get()
#Detector idPotiProc
detector6 = idPotiProc.get()
#Detector idBtvsRaw
detector7 = idBtvsRaw.get()
#Detector idBtvsProc
detector8 = idBtvsProc.get()
#end switches
endH = idEndSwitchH.get()
endL = idEndSwitchL.get()
#Manipulation idDiff02
#Variable Mappings
a = detector4
b = detector8
idDiff02 = a-b
#Manipulation idDiff01
#Variable Mappings
a = detector4
b = detector6
idDiff01 = a-b
countSteps = countSteps + 1
scan.append ([countSteps], [countSteps], [detector1, detector2, detector3, detector4, detector5, detector6, detector7, detector8, idDiff02, idDiff01])
if endH>0.0 or (direction > 0.0 and setpoint2 >= end -1):
#invert direction and swap start with end of translation
end = startDefault-1
start = setpoint2 - direction
direction = -1.0
print_log(testName, DEVICE, 'End of span (' + str(setpoint2) + '), changing direction to ' + str(direction) )
break
if endL>0.0 or ( direction < 0.0 and setpoint2 <= end +1):
#invert direction and swap start with end of translation
end = endDefault+1
start = setpoint2 - direction
direction = 1.0
print_log(testName, DEVICE, 'End of span (' + str(setpoint2) + '), changing direction to ' + str(direction) )
break
#set limits back
idLimitH.put(145.0, timeout=None)
idLimitL.put(0.0, timeout=None)
#Closing channels
idInkr.close()
idMotorStatus.close()
idLogicalPosition.close()
idDiameter.close()
idMotorPosition.close()
idPotiRaw.close()
idPotiProc.close()
idBtvsRaw.close()
idBtvsProc.close()
scan.end()
ret = 'Slide moved back and forth (' + str(count) + ' runs)'
status = True
########## END OF YOUR CODE ###########
###### DO NOT MODIFY THE CODE BELOW ######
sendFeedback(testPath, testName, DEVICE, ret, status)
#prepare and send feedback to calling tool
def sendFeedback(testPath, testName, DEVICE, returnString, testPassed):
print_log(testName, DEVICE, 'End of test. Result:')
print_log(testName, DEVICE, 'Test path: ' + testPath)
print_log(testName, DEVICE, 'Test name: ' + testName)
print_log(testName, DEVICE, 'Device: ' + DEVICE)
print_log(testName, DEVICE, 'Test passed: ' + str(testPassed))
print_log(testName, DEVICE, 'Return string: ' + returnString)
ret = [testPath, DEVICE, returnString, testPassed]
set_return(ret)
def print_log(testName, DEVICE, text):
time.ctime()
now = time.strftime('%Y.%m.%d %H:%M:%S')
print now + ' ' + DEVICE + ' - ' + testName + ': ' + text
#get test arguments
#DEVICE = device
#parameters={}#REMOVE
#launch the test
#startTest(test, device, parameters)

View File

@@ -1,3 +0,0 @@
name=FIXL
description=FIXL: Fixation Light
tests=Fixation Light Tests

View File

@@ -1,3 +0,0 @@
name=MWD
description=MWD: Modulator Wheel Display
tests=Modulator Wheel Display Tests

View File

@@ -1,3 +0,0 @@
name=RS
description=RS: Range Shifter
tests=Range Shifter Tests

View File

@@ -1,3 +0,0 @@
name=SC21
description=SC21: Scatter Foil 2.1
tests=Linear Slide Tests

View File

@@ -1,3 +0,0 @@
name=SC22
description=SC21: Scatter Foil 2.2
tests=Linear Slide Tests

View File

@@ -1,3 +0,0 @@
name=SC23
description=SC23: Scatter Foil 2.3
tests=Linear Slide Tests

Binary file not shown.

Binary file not shown.

View File

@@ -1,3 +0,0 @@
name=PROF02:DMAF1
description=Collimators
tests=Collimator Tests pro

View File

@@ -1,4 +0,0 @@
name=PO2DV-NCS-LS
description=Optis 2 Linear Slide in test office setup
#tests=Collimator Tests
tests=Linear Slide Tests

View File

@@ -1,3 +0,0 @@
name=PO2DV-NCS-VHQ1
description=Optis 2 Linear Slide in test office setup
tests=PS Tests

View File

@@ -1,3 +0,0 @@
name=PROF02:DMAF1
description=Collimators
tests=Collimator Tests pro

View File

@@ -1,3 +0,0 @@
name=PO2DV-NCS-VHQ1
description=Optis 2 Linear Slide in test office setup
tests=PS Tests

View File

@@ -1,3 +0,0 @@
name=PO2TC-NCS-FIXL
description=FIXL: Fixation Light
tests=Display Tests

View File

@@ -1,3 +0,0 @@
name=PO2TC-NCS-MWD
description=MWD: Modulator Wheel Display
tests=Display Tests

View File

@@ -1,3 +0,0 @@
name=PO2TC-NCS-RS
description=RS: Range Shifter
tests=Range Shifter Tests

View File

@@ -1,3 +0,0 @@
name=PO2TC-NCS-SC21
description=SC21: Scatter Foil 2.1
tests=Linear Slide Tests

View File

@@ -1,3 +0,0 @@
name=PO2TC-NCS-SC22
description=SC21: Scatter Foil 2.2
tests=Linear Slide Tests

View File

@@ -1,3 +0,0 @@
name=PO2TC-NCS-SC23
description=SC23: Scatter Foil 2.3
tests=Linear Slide Tests

View File

@@ -1,4 +0,0 @@
#Tue Sep 01 14:05:29 CEST 2015
name=defev
tests=jojo
description=vvff

View File

@@ -1,92 +0,0 @@
Aug 03, 2015 4:22:23 PM TestingList loadTests
INFO: 21 tests loaded.
Aug 03, 2015 4:23:24 PM TestingList setToStopped
INFO: End of tests.
Aug 03, 2015 4:23:25 PM TestingList setToStopped
INFO: End of tests.
Aug 03, 2015 4:23:25 PM TestingList setToStopped
INFO: End of tests.
Aug 03, 2015 4:23:26 PM TestingList setToStopped
INFO: End of tests.
Aug 03, 2015 4:23:32 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Calibrate test vme'. No parameters found.
Aug 03, 2015 4:23:33 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Calibrate test vme\\Calibrate test vme.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 670, in call
File "<script>", line 831, in run
File ".\home\script\tests\tests\Collimator Tests\Calibrate test vme\Calibrate test vme.py", line 135, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Collimator Tests\Calibrate test vme\Calibrate test vme.py", line 115, in startTest
sendFeedback(testPath, testName, DEVICE, ret, success)
UnboundLocalError: local variable 'testPath' referenced before assignment
Aug 03, 2015 4:23:33 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Calibrate test vme\\Calibrate test vme.py in table.
Aug 03, 2015 4:23:33 PM TestingList setToStopped
INFO: End of tests.
Aug 03, 2015 4:23:52 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Motor Test 2' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}}
Aug 03, 2015 4:23:52 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Motor Test 2\\Motor Test 2.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 670, in call
File "<script>", line 831, in run
File ".\home\script\tests\tests\Collimator Tests\Motor Test 2\Motor Test 2.py", line 211, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Collimator Tests\Motor Test 2\Motor Test 2.py", line 188, in startTest
sendFeedback(testPath, testName, DEVICE, ret, success)
UnboundLocalError: local variable 'testPath' referenced before assignment
Aug 03, 2015 4:23:52 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Motor Test 2\\Motor Test 2.py in table.
Aug 03, 2015 4:23:52 PM TestingList setToStopped
INFO: End of tests.
Aug 03, 2015 4:23:57 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Motor Test 2' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}}
Aug 03, 2015 4:23:57 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Motor Test 2\\Motor Test 2.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 670, in call
File "<script>", line 831, in run
File ".\home\script\tests\tests\Collimator Tests\Motor Test 2\Motor Test 2.py", line 211, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Collimator Tests\Motor Test 2\Motor Test 2.py", line 188, in startTest
sendFeedback(testPath, testName, DEVICE, ret, success)
UnboundLocalError: local variable 'testPath' referenced before assignment
Aug 03, 2015 4:23:57 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Motor Test 2\\Motor Test 2.py in table.
Aug 03, 2015 4:23:57 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 03, 2015 4:24:03 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\PS Tests\power-supply-A\power-supply-A.py", line 43, in startTest
SetRamp = Channel(DEVICE + ':Set-RampA', type = 'd')
File "<script>", line 602, in __init__
File "<script>", line 598, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-VHQ1:Set-RampA
Aug 03, 2015 4:24:03 PM TestingList setToStopped
INFO: End of tests.
Aug 03, 2015 4:24:12 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Motor Test 2' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}}
Aug 03, 2015 4:24:18 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Motor Test 2; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Motor Test 2\Motor Test 2.py", line 41, in startTest
idInkr = Channel(DEVICE+':MOTOR.VAL', type = 'd')
File "<script>", line 602, in __init__
File "<script>", line 598, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:MOTOR.VAL
Aug 03, 2015 4:24:18 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 03, 2015 4:24:24 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\PS Tests\power-supply-A\power-supply-A.py", line 43, in startTest
SetRamp = Channel(DEVICE + ':Set-RampA', type = 'd')
File "<script>", line 602, in __init__
File "<script>", line 598, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-VHQ1:Set-RampA
Aug 03, 2015 4:24:24 PM TestingList setToStopped
INFO: End of tests.
Aug 03, 2015 4:24:24 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,2 +0,0 @@
Aug 03, 2015 4:49:37 PM TestingList loadTests
INFO: 21 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 03, 2015 5:01:51 PM TestingList loadTests
INFO: 21 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 03, 2015 5:02:29 PM TestingList loadTests
INFO: 21 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 04, 2015 10:00:35 AM TestingList loadTests
INFO: 21 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 04, 2015 10:02:31 AM TestingList loadTests
INFO: 21 tests loaded.

View File

@@ -1,26 +0,0 @@
Aug 04, 2015 11:07:45 AM TestingList loadTests
INFO: 21 tests loaded.
Aug 04, 2015 11:07:50 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Motor Test 2' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}}
Aug 04, 2015 11:07:50 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Motor Test 2\\Motor Test 2.py; Result: ch.psi.pshell.core.Controller$ControllerStateException: Invalid controler state: Initializing
Aug 04, 2015 11:07:50 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Motor Test 2\\Motor Test 2.py in table.
Aug 04, 2015 11:07:50 AM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 11:08:17 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Motor Test 3' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, translation={description=Translation C steps, value=2}}
Aug 04, 2015 11:08:17 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Motor Test 3\\Motor Test 3.py; Result: ch.psi.pshell.core.Controller$ControllerStateException: Invalid controler state: Fault
Aug 04, 2015 11:08:17 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Motor Test 3\\Motor Test 3.py in table.
Aug 04, 2015 11:08:17 AM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 11:08:25 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 04, 2015 11:08:25 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-VHQ1; Test: .\\home\\script\\tests\\tests\\PS Tests\\power-supply-A\\power-supply-A.py; Result: ch.psi.pshell.core.Controller$ControllerStateException: Invalid controler state: Fault
Aug 04, 2015 11:08:25 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\PS Tests\\power-supply-A\\power-supply-A.py in table.
Aug 04, 2015 11:08:25 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,43 +0,0 @@
Aug 04, 2015 11:08:48 AM TestingList loadTests
INFO: 21 tests loaded.
Aug 04, 2015 11:09:04 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 04, 2015 11:09:17 AM TestingList showResult
INFO: Success - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Test ps A completed
Aug 04, 2015 11:09:17 AM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 11:09:17 AM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 11:09:21 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Motor Test 2' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}}
Aug 04, 2015 11:09:22 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Motor Test 2; Result: Actor idInkr could not be set to the value 41.0 (current value: 0.0)
Aug 04, 2015 11:09:22 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 04, 2015 11:09:33 AM TestingList showResult
INFO: Success - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Test ps A completed
Aug 04, 2015 11:09:33 AM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 11:09:33 AM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 11:12:51 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Calibrate test vme'. No parameters found.
Aug 04, 2015 11:12:57 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate test vme; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Calibrate test vme\Calibrate test vme.py", line 20, in startTest
caput('PO2DV-NCS-'+DEVICE+':INIT.PROC', '1')
File "<script>", line 558, in caput
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-PO2DV-NCS-LS:INIT.PROC
Aug 04, 2015 11:12:57 AM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 11:12:57 AM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 11:16:26 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Calibrate test vme'. No parameters found.
Aug 04, 2015 11:17:30 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate test vme; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 40s).
Aug 04, 2015 11:17:30 AM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 11:17:30 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,97 +0,0 @@
Aug 04, 2015 1:40:45 PM TestingList loadTests
INFO: 22 tests loaded.
Aug 04, 2015 1:40:58 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Initialise'. No parameters found.
Aug 04, 2015 1:41:00 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 130, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 126, in startTest
sendFeedback(testPath, testName, DEVICE, ret, success)
UnboundLocalError: local variable 'testPath' referenced before assignment
Aug 04, 2015 1:41:00 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py in table.
Aug 04, 2015 1:41:00 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:43:28 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 04, 2015 1:43:40 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Test ps A completed
Aug 04, 2015 1:43:40 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:43:40 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:45:17 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Initialise'. No parameters found.
Aug 04, 2015 1:45:17 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.syntaxerror: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 46
try:
^
SyntaxError: mismatched input '' expecting DEDENT
Aug 04, 2015 1:45:17 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py in table.
Aug 04, 2015 1:45:17 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:46:10 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Initialise'. No parameters found.
Aug 04, 2015 1:46:10 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Could not retrieve testing parameters - Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 50, in startTest
print_log(testName, DEVICE, params )
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 11, in print_log
print now + ' ' + DEVICE + ' - ' + testName + ': ' + text
TypeError: cannot concatenate 'str' and 'set' objects
Aug 04, 2015 1:46:10 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:46:10 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:46:17 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Initialise'. No parameters found.
Aug 04, 2015 1:46:17 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Could not retrieve testing parameters - Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 50, in startTest
print_log(testName, DEVICE, params )
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 11, in print_log
print now + ' ' + DEVICE + ' - ' + testName + ': ' + text
TypeError: cannot concatenate 'str' and 'set' objects
Aug 04, 2015 1:46:17 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:46:17 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:46:23 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Initialise'. No parameters found.
Aug 04, 2015 1:46:23 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Could not retrieve testing parameters - Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 50, in startTest
print_log(testName, DEVICE, params )
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 11, in print_log
print now + ' ' + DEVICE + ' - ' + testName + ': ' + text
TypeError: cannot concatenate 'str' and 'set' objects
Aug 04, 2015 1:46:23 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:46:23 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:47:47 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Initialise'. No parameters found.
Aug 04, 2015 1:47:47 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Could not retrieve testing parameters - Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 50, in startTest
print_log(testName, DEVICE, params )
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 11, in print_log
print now + ' ' + DEVICE + ' - ' + testName + ': ' + text
TypeError: cannot concatenate 'str' and 'set' objects
Aug 04, 2015 1:47:47 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:47:47 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,16 +0,0 @@
Aug 04, 2015 1:48:06 PM TestingList loadTests
INFO: 22 tests loaded.
Aug 04, 2015 1:48:14 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}}
Aug 04, 2015 1:48:16 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Could not retrieve testing parameters - Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 50, in startTest
print_log(testName, DEVICE, params )
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 11, in print_log
print now + ' ' + DEVICE + ' - ' + testName + ': ' + text
TypeError: cannot concatenate 'str' and 'dict' objects
Aug 04, 2015 1:48:16 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:48:16 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,334 +0,0 @@
Aug 04, 2015 1:49:21 PM TestingList loadTests
INFO: 22 tests loaded.
Aug 04, 2015 1:49:28 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 1:49:30 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Could not retrieve testing parameters - Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 50, in startTest
print_log(testName, DEVICE, params )
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 11, in print_log
print now + ' ' + DEVICE + ' - ' + testName + ': ' + text
TypeError: cannot concatenate 'str' and 'dict' objects
Aug 04, 2015 1:49:30 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:49:30 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:52:53 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 04, 2015 1:53:05 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Test ps A completed
Aug 04, 2015 1:53:05 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:53:05 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:54:09 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 1:54:09 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Could not retrieve testing parameters - Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 50, in startTest
print_log(testName, DEVICE, params )
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 11, in print_log
print now + ' ' + DEVICE + ' - ' + testName + ': ' + text
TypeError: cannot concatenate 'str' and 'dict' objects
Aug 04, 2015 1:54:09 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:54:09 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:55:12 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 1:55:17 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 91, in startTest
idInit.put(setpoint2, timeout=None) # TODO: Set appropriate timeout
NameError: global name 'setpoint2' is not defined
Aug 04, 2015 1:55:17 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:55:17 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:57:10 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 1:57:15 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 91, in startTest
idInit.put(1, timeout=None) # TODO: Set appropriate timeout
File "<script>", line 620, in put
ClassCastException: java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Double
Aug 04, 2015 1:57:15 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:57:15 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:57:36 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 1:57:40 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 92, in startTest
while not (ready == 1):
NameError: global name 'ready' is not defined
Aug 04, 2015 1:57:40 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:57:40 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:57:57 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 1:58:01 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 92, in startTest
while not (ready == 1):
UnboundLocalError: local variable 'ready' referenced before assignment
Aug 04, 2015 1:58:01 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:58:01 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:58:34 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 1:58:38 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 111, in startTest
scan.append ([setpoint2], [readback2], [detector2, detector4, detector6, detector8, idDiff02, idDiff01])
NameError: global name 'setpoint2' is not defined
Aug 04, 2015 1:58:38 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 1:58:38 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:02:18 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:02:22 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 113, in startTest
scan.append ([timeStamp], [detector2, detector4, detector6, detector8, idDiff02, idDiff01])
NameError: global name 'detector2' is not defined
Aug 04, 2015 2:02:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:02:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:03:05 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:03:09 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 113, in startTest
scan.append ([timeStamp], [detector4, detector6, detector8, idDiff02, idDiff01])
TypeError: append() takes exactly 4 arguments (3 given)
Aug 04, 2015 2:03:09 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:03:09 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:03:37 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:10:30 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:10:31 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py; Result: ch.psi.pshell.scripting.StatementException: java.lang.InterruptedException: java.lang.InterruptedException
Aug 04, 2015 2:10:31 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py in table.
Aug 04, 2015 2:10:31 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:10:34 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:10:38 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 94, in startTest
while not (ready == 1) and timeElapsed<40:
UnboundLocalError: local variable 'ready' referenced before assignment
Aug 04, 2015 2:10:38 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:10:38 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:11:54 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:11:58 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 95, in startTest
while not (ready == 1) and timeElapsed<40:
UnboundLocalError: local variable 'timeElapsed' referenced before assignment
Aug 04, 2015 2:11:58 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:11:58 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:12:18 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:12:22 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Motor initialised 0 times
Aug 04, 2015 2:12:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:12:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:12:48 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:12:53 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Motor initialised 2 times
Aug 04, 2015 2:12:53 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:12:53 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:13:30 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:13:34 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Motor initialised 2 times
Aug 04, 2015 2:13:34 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:13:34 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:13:48 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:13:53 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Motor initialised 2 times
Aug 04, 2015 2:13:53 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:13:53 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:14:17 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:14:21 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Motor initialised 0 times
Aug 04, 2015 2:14:21 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:14:21 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:14:52 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:15:36 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Motor initialised 0 times
Aug 04, 2015 2:15:36 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:15:36 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:16:18 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:17:02 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 40s).
Aug 04, 2015 2:17:02 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:17:02 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:17:38 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:18:22 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 40s).
Aug 04, 2015 2:18:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:18:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:19:11 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:19:55 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 40s).
Aug 04, 2015 2:19:55 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:19:55 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:24:31 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:24:35 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 119, in startTest
if ready == 1 and interlock == 1:
UnboundLocalError: local variable 'interlock' referenced before assignment
Aug 04, 2015 2:24:35 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:24:35 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:25:54 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:25:58 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 119, in startTest
if ready == 1 and interlock == 1:
UnboundLocalError: local variable 'interlock' referenced before assignment
Aug 04, 2015 2:25:58 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:25:58 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:27:03 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:27:07 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Drive initialised 0 times
Aug 04, 2015 2:27:07 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:27:07 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:28:18 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:28:22 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 94, in startTest
delay(0.5)
NameError: global name 'delay' is not defined
Aug 04, 2015 2:28:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:28:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:29:25 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:30:10 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 40s).
Aug 04, 2015 2:30:10 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:30:10 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:32:34 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:32:34 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 91, in startTest
print_log(testName, DEVICE, ready )
UnboundLocalError: local variable 'ready' referenced before assignment
Aug 04, 2015 2:32:34 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:32:34 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:33:32 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:33:33 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 91, in startTest
print_log(testName, DEVICE, 'Initialisation #' + str(count) + '/' + str(looptimes) )
NameError: global name 'looptimes' is not defined
Aug 04, 2015 2:33:33 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:33:33 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:33:41 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:33:45 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 93, in startTest
idInit.put(1, timeout=None) # TODO: Set appropriate timeout
File "<script>", line 620, in put
ClassCastException: java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Short
Aug 04, 2015 2:33:45 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:33:45 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:35:55 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:36:40 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 40s).
Aug 04, 2015 2:36:40 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:36:40 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:37:49 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:38:33 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 60s).
Aug 04, 2015 2:38:33 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:38:33 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,204 +0,0 @@
Aug 04, 2015 2:39:28 PM TestingList loadTests
INFO: 22 tests loaded.
Aug 04, 2015 2:39:39 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Calibrate'. No parameters found.
Aug 04, 2015 2:39:39 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Collimator Tests\Calibrate\Calibrate.py", line 31, in <module>
ret = 'Unable to create channel - ' + traceback.format_exc()
NameError: name 'traceback' is not defined
Aug 04, 2015 2:39:39 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Calibrate\\Calibrate.py in table.
Aug 04, 2015 2:39:39 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:39:42 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'Calibrate'. No parameters found.
Aug 04, 2015 2:39:42 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Collimator Tests\Calibrate\Calibrate.py", line 31, in <module>
ret = 'Unable to create channel - ' + traceback.format_exc()
NameError: name 'traceback' is not defined
Aug 04, 2015 2:39:42 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Calibrate\\Calibrate.py in table.
Aug 04, 2015 2:39:42 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:39:59 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:40:44 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 60s).
Aug 04, 2015 2:40:44 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:40:44 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:41:15 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:41:59 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 60s).
Aug 04, 2015 2:41:59 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:41:59 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:42:29 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:44:40 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Drive initialised 1 times
Aug 04, 2015 2:44:40 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:44:40 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:45:23 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:45:23 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.syntaxerror: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 90
for count in range(1, loopTimes+!):
^
SyntaxError: no viable alternative at input ':'
Aug 04, 2015 2:45:23 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py in table.
Aug 04, 2015 2:45:23 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:45:35 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:47:46 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Drive initialised 2 times
Aug 04, 2015 2:47:46 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:47:46 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:48:05 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:50:16 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 127, in startTest
idBtvsProc.close()
NameError: global name 'idBtvsProc' is not defined
Aug 04, 2015 2:50:16 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:50:16 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:50:30 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:50:30 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 89, in startTest
print_log(testName, DEVICE, 'Initialisation #' + str(count) + '/' + str(loopTimes) + ' starting in ' + delaySeconds + 's')
TypeError: cannot concatenate 'str' and 'int' objects
Aug 04, 2015 2:50:30 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:50:30 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:50:45 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:52:56 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Drive initialised 2 times
Aug 04, 2015 2:52:56 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:52:56 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:52:57 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:55:07 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Drive initialised 2 times
Aug 04, 2015 2:55:07 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:55:07 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:55:10 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:55:10 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.syntaxerror: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 121
if(count < looptimes+1)
^
SyntaxError: mismatched input '\n' expecting COLON
Aug 04, 2015 2:55:10 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py in table.
Aug 04, 2015 2:55:10 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:55:22 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:56:23 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 121, in startTest
if(count < looptimes+1):
NameError: global name 'looptimes' is not defined
Aug 04, 2015 2:56:23 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:56:23 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:56:57 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:56:57 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.syntaxerror: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 115
print_log(testName, DEVICE, 'Initialisation #' + str(count) + '/' + str(loopTimes) ' successful')
^
SyntaxError: no viable alternative at input '' successful''
Aug 04, 2015 2:56:57 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Initialise\\Initialise.py in table.
Aug 04, 2015 2:56:57 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:57:14 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 2:59:25 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Drive initialised 2 times
Aug 04, 2015 2:59:25 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 2:59:25 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:01:10 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 3:01:48 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 102, in startTest
detector4 = idMotorPosition.get()
File "<script>", line 628, in get
IllegalStateException: java.lang.IllegalStateException: Channel not connected.
Aug 04, 2015 3:01:48 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:01:48 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:16:47 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 3:18:54 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Drive initialised 2 times
Aug 04, 2015 3:18:54 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:18:54 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:21:04 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 3:21:04 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 04, 2015 3:21:04 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-B'. No parameters found.
Aug 04, 2015 3:23:11 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Test ps A completed
Aug 04, 2015 3:23:11 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Drive initialised 2 times
Aug 04, 2015 3:23:11 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-VHQ1; Test: power-supply-B; Result: Test ps B completed
Aug 04, 2015 3:23:11 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:23:11 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,18 +0,0 @@
Aug 04, 2015 3:36:04 PM TestingList loadTests
INFO: 23 tests loaded.
Aug 04, 2015 3:36:13 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Go to specific position' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}}
Aug 04, 2015 3:36:14 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Go to specific position\\Go to specific position.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Collimator Tests\Go to specific position\Go to specific position.py", line 211, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Collimator Tests\Go to specific position\Go to specific position.py", line 188, in startTest
sendFeedback(testPath, testName, DEVICE, ret, success)
UnboundLocalError: local variable 'testPath' referenced before assignment
Aug 04, 2015 3:36:14 PM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Collimator Tests\\Go to specific position\\Go to specific position.py in table.
Aug 04, 2015 3:36:14 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,46 +0,0 @@
Aug 04, 2015 3:41:49 PM TestingList loadTests
INFO: 23 tests loaded.
Aug 04, 2015 3:41:57 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Go to specific position' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}, delayS={description=Delay between each oscillation [s], value=4}}
Aug 04, 2015 3:42:16 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Go to specific position; Result: Slide moved back and forth (2 runs)
Aug 04, 2015 3:42:16 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:42:16 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:47:27 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 3:47:28 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Initialise; Result: Traceback (most recent call last):
File ".\home\script\tests\tests\Collimator Tests\Initialise\Initialise.py", line 96, in startTest
endH = idEndSwitchH.get()
NameError: global name 'idEndSwitchH' is not defined
Aug 04, 2015 3:47:28 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:47:28 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:48:28 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Initialise' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 04, 2015 3:50:35 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Initialise; Result: Drive initialised 2 times
Aug 04, 2015 3:50:35 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:50:35 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:55:02 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Go to specific position' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}, delayS={description=Delay between each oscillation [s], value=4}}
Aug 04, 2015 3:55:22 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Go to specific position; Result: Slide moved back and forth (2 runs)
Aug 04, 2015 3:55:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:55:22 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:57:19 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Go to specific position' with the following parameters: {repeatTimes={description=Repeat N times, value=1}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=2.0}, delayS={description=Delay between each oscillation [s], value=4}}
Aug 04, 2015 3:57:31 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Go to specific position; Result: Slide moved back and forth (2 runs)
Aug 04, 2015 3:57:31 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:57:31 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,26 +0,0 @@
Aug 04, 2015 3:59:12 PM TestingList loadTests
INFO: 23 tests loaded.
Aug 04, 2015 3:59:28 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Go to specific position' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=3.0}, delayS={description=Delay between each oscillation [s], value=0}}
Aug 04, 2015 3:59:48 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Go to specific position; Result: Slide moved back and forth (4 runs)
Aug 04, 2015 3:59:48 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 3:59:48 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 4:45:11 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Go to specific position' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, midPoint={description=Middle point A, value=41.0}, spanFromMidPoint={description=B steps around middle point A, value=3.0}, delayS={description=Delay between each oscillation [s], value=0}}
Aug 04, 2015 4:45:11 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 04, 2015 4:45:11 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-B'. No parameters found.
Aug 04, 2015 4:45:29 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Test ps A completed
Aug 04, 2015 4:45:29 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-LS; Test: Go to specific position; Result: Slide moved back and forth (4 runs)
Aug 04, 2015 4:45:29 PM TestingList showResult
INFO: Success - Device: PO2DV-NCS-VHQ1; Test: power-supply-B; Result: Test ps B completed
Aug 04, 2015 4:45:29 PM TestingList setToStopped
INFO: End of tests.
Aug 04, 2015 4:45:29 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,2 +0,0 @@
Aug 05, 2015 8:47:12 AM TestingList loadTests
INFO: 23 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 05, 2015 10:23:15 AM TestingList loadTests
INFO: 23 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 05, 2015 10:23:40 AM TestingList loadTests
INFO: 23 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 05, 2015 10:24:03 AM TestingList loadTests
INFO: 23 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 05, 2015 11:20:00 AM TestingList loadTests
INFO: 23 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 05, 2015 11:26:10 AM TestingList loadTests
INFO: 23 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 06, 2015 3:05:01 PM TestingList loadTests
INFO: 23 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 06, 2015 3:06:48 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,10 +0,0 @@
Aug 06, 2015 3:08:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 06, 2015 3:08:46 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 06, 2015 3:08:54 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: The RDY and ILK signals indicate the drive was NOT ready at the expected time (after 5s).
Aug 06, 2015 3:08:54 PM TestingList setToStopped
INFO: End of tests.
Aug 06, 2015 3:08:54 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,92 +0,0 @@
Aug 17, 2015 2:21:11 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:25:06 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 17, 2015 2:25:13 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\PS Tests\power-supply-A\power-supply-A.py", line 46, in startTest
SetRamp = Channel(DEVICE + ':Set-RampA', type = 'd')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-VHQ1:Set-RampA
Aug 17, 2015 2:25:13 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:25:13 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:27:59 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:28:05 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 17, 2015 2:28:11 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\PS Tests\power-supply-A\power-supply-A.py", line 46, in startTest
SetRamp = Channel(DEVICE + ':Set-RampA', type = 'd')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-VHQ1:Set-RampA
Aug 17, 2015 2:28:11 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:28:11 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:28:37 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:28:44 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:28:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:28:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:29:31 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:29:37 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:29:44 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:29:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:29:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:34:59 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:35:04 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:35:10 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:35:10 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:35:10 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:36:49 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=5}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:36:55 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:36:55 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:36:55 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,76 +0,0 @@
Aug 17, 2015 2:27:59 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:28:05 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running Test 'power-supply-A'. No parameters found.
Aug 17, 2015 2:28:11 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-VHQ1; Test: power-supply-A; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\PS Tests\power-supply-A\power-supply-A.py", line 46, in startTest
SetRamp = Channel(DEVICE + ':Set-RampA', type = 'd')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-VHQ1:Set-RampA
Aug 17, 2015 2:28:11 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:28:11 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:28:37 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:28:44 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:28:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:28:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:29:31 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:29:37 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:29:44 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:29:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:29:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:34:59 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:35:04 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:35:10 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:35:10 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:35:10 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:36:49 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=5}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:36:55 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:36:55 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:36:55 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,46 +0,0 @@
Aug 17, 2015 2:29:31 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:29:37 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:29:44 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:29:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:29:44 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:34:59 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:35:04 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:35:10 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:35:10 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:35:10 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:36:49 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=5}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:36:55 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:36:55 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:36:55 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,30 +0,0 @@
Aug 17, 2015 2:34:59 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 17, 2015 2:35:04 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:35:10 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:35:10 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:35:10 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:36:49 PM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=5}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 17, 2015 2:36:55 PM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 64, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 17, 2015 2:36:55 PM TestingList setToStopped
INFO: End of tests.
Aug 17, 2015 2:36:55 PM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,202 +0,0 @@
Aug 17, 2015 3:18:14 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 10:20:26 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:20:33 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 65, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 10:20:33 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:20:33 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:27:14 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:27:15 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 5, in <module>
import script.tests.lib.testcommon
ImportError: No module named script
Aug 18, 2015 10:27:15 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:27:15 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:33:08 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:33:08 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.syntaxerror: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 5
import ..lib.testcommon
^
SyntaxError: mismatched input '.' expecting NAME
Aug 18, 2015 10:33:08 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:33:08 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:38:34 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:38:34 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.syntaxerror: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 5
import ..lib.testcommon
^
SyntaxError: mismatched input '.' expecting NAME
Aug 18, 2015 10:38:34 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:38:34 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:38:39 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:38:39 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 5, in <module>
import testcommon
ImportError: No module named testcommon
Aug 18, 2015 10:38:39 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:38:39 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:39:56 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:39:56 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 5, in <module>
import testcommon
ImportError: No module named testcommon
Aug 18, 2015 10:39:56 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:39:56 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:45:19 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:45:25 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 67, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 10:45:25 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:45:25 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:45:39 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:45:45 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 67, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 10:45:45 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:45:45 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:45:51 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:45:57 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 67, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 10:45:57 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:45:57 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:46:00 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:46:06 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 67, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 10:46:06 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:46:06 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:46:14 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:46:20 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 67, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 10:46:20 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:46:20 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:46:26 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:46:32 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 67, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 10:46:32 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:46:32 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:48:15 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 10:48:22 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:48:29 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 67, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 10:48:29 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:48:29 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:57:54 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:57:54 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
testcommon.print_pio()
AttributeError: 'module' object has no attribute 'print_pio'
Aug 18, 2015 10:57:54 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:57:54 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,30 +0,0 @@
Aug 18, 2015 10:48:15 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 10:48:22 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:48:29 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 67, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 10:48:29 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:48:29 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:57:54 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:57:54 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
testcommon.print_pio()
AttributeError: 'module' object has no attribute 'print_pio'
Aug 18, 2015 10:57:54 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:57:54 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,237 +0,0 @@
Aug 18, 2015 10:58:19 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 10:58:25 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:58:25 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.core.Controller$ControllerStateException: Invalid controler state: Initializing
Aug 18, 2015 10:58:25 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:58:25 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:58:30 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:58:31 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
testcommon.print_pio()
AttributeError: 'module' object has no attribute 'print_pio'
Aug 18, 2015 10:58:31 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:58:31 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 10:59:19 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 10:59:19 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
testcommon.print_pio()
AttributeError: 'module' object has no attribute 'print_pio'
Aug 18, 2015 10:59:19 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 10:59:19 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:00:04 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:00:04 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 3, in <module>
import testcommone
ImportError: No module named testcommone
Aug 18, 2015 11:00:04 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:00:04 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:00:18 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:00:18 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 3, in <module>
import testcommone
ImportError: No module named testcommone
Aug 18, 2015 11:00:18 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:00:18 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:00:30 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:00:30 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 3, in <module>
import testcommone
ImportError: No module named testcommone
Aug 18, 2015 11:00:30 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:00:30 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:00:38 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:00:39 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 3, in <module>
import testcommone
ImportError: No module named testcommone
Aug 18, 2015 11:00:39 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:00:39 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:01:07 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:01:07 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 3, in <module>
import testcommone
ImportError: No module named testcommone
Aug 18, 2015 11:01:07 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:01:07 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:01:19 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:01:19 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.syntaxerror: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 3, in <module>
import testcommone
File ".\home\script\testcommone.py", line 12
def print_pio()
^
SyntaxError: mismatched input '\n' expecting COLON
Aug 18, 2015 11:01:19 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:01:19 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:02:32 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:02:39 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 68, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 11:02:39 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:02:39 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:03:19 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:03:19 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
testcommone.print_pio()
NameError: name 'testcommone' is not defined
Aug 18, 2015 11:03:19 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:03:20 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:03:31 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:03:31 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
testcommone.print_pio()
NameError: name 'testcommone' is not defined
Aug 18, 2015 11:03:31 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:03:31 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:03:55 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:03:55 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
testcommon.print_pio()
AttributeError: 'module' object has no attribute 'print_pio'
Aug 18, 2015 11:03:55 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:03:55 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:04:20 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:04:26 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 68, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 11:04:26 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:04:26 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:06:06 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:06:06 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
pshellTestGeneral.print_log('a','s','g')
AttributeError: 'module' object has no attribute 'print_log'
Aug 18, 2015 11:06:06 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:06:06 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:06:28 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:06:28 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
pshellTestGeneral.print_log('a','s','g')
AttributeError: 'module' object has no attribute 'print_log'
Aug 18, 2015 11:06:28 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:06:28 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:06:45 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:06:45 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
pshellTestGeneral.print_log('a','s','g')
AttributeError: 'module' object has no attribute 'print_log'
Aug 18, 2015 11:06:45 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:06:45 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,18 +0,0 @@
Aug 18, 2015 11:07:04 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:07:09 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:07:14 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:07:16 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
pshellTestGeneral.print_log('a','s','g')
TypeError: print_log() takes exactly 4 arguments (3 given)
Aug 18, 2015 11:07:16 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:07:16 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,16 +0,0 @@
Aug 18, 2015 11:07:49 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:07:56 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:08:04 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: Calibrate; Result: Unable to create channel - Traceback (most recent call last):
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 68, in startTest
idInit = Channel(DEVICE+':INIT.PROC', type = 'l')
File "<script>", line 588, in __init__
File "<script>", line 584, in create_channel
ChannelException: ch.psi.jcae.ChannelException: Unable to create channel PO2DV-NCS-LS:INIT.PROC
Aug 18, 2015 11:08:04 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:08:04 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,18 +0,0 @@
Aug 18, 2015 11:10:56 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:11:03 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:11:05 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
pshellTestGeneral.print_log('a','s','g')
File ".\home\script\pshellTestGeneral.py", line 5, in print_log
time.ctime()
NameError: global name 'time' is not defined
Aug 18, 2015 11:11:05 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:11:05 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,18 +0,0 @@
Aug 18, 2015 11:13:37 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:13:44 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:13:45 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
pshellTestGeneral.print_log('a','s','g')
File ".\home\script\pshellTestGeneral.py", line 5, in print_log
time.ctime()
NameError: global name 'time' is not defined
Aug 18, 2015 11:13:45 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:13:45 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,18 +0,0 @@
Aug 18, 2015 11:14:23 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:14:29 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:14:31 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 4, in <module>
pshellTestGeneral.print_log('a','s','g')
File ".\home\script\pshellTestGeneral.py", line 9, in print_log
log ( textToLog )
NameError: global name 'log' is not defined
Aug 18, 2015 11:14:31 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:14:31 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,18 +0,0 @@
Aug 18, 2015 11:16:51 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:16:58 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:16:59 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 3, in <module>
import pshellTestGeneral
File ".\home\script\pshellTestGeneral.py", line 2, in <module>
import sys, inspect, os, traceback, time, Lib.startup
ImportError: No module named Lib
Aug 18, 2015 11:16:59 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:16:59 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,20 +0,0 @@
Aug 18, 2015 11:17:21 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:17:27 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:17:29 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 3, in <module>
import pshellTestGeneral
File ".\home\script\pshellTestGeneral.py", line 2, in <module>
import sys, inspect, os, traceback, time, startup
File ".\home\script\Lib\startup.py", line 751, in <module>
ca_channel_path=os.path.join(controller.setup.getStandardLibraryPath(), "epics")
NameError: name 'controller' is not defined
Aug 18, 2015 11:17:29 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:17:29 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,20 +0,0 @@
Aug 18, 2015 11:18:10 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:18:22 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:18:23 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 3, in <module>
import pshellTestGeneral
File ".\home\script\pshellTestGeneral.py", line 2, in <module>
import sys, inspect, os, traceback, time, startup
File ".\home\script\Lib\startup.py", line 751, in <module>
ca_channel_path=os.path.join(controller.setup.getStandardLibraryPath(), "epics")
NameError: name 'controller' is not defined
Aug 18, 2015 11:18:23 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:18:23 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,18 +0,0 @@
Aug 18, 2015 11:19:07 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:19:13 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:19:14 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 120, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 116, in startTest
pshellTestGeneral.sendFeedback(testPath, testName, DEVICE, ret, success)
NameError: global name 'pshellTestGeneral' is not defined
Aug 18, 2015 11:19:14 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:19:14 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,34 +0,0 @@
Aug 18, 2015 11:19:39 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:19:51 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:19:52 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 120, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 116, in startTest
pshellTestGeneral.sendFeedback(testPath, testName, DEVICE, ret, success)
NameError: global name 'pshellTestGeneral' is not defined
Aug 18, 2015 11:19:52 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:19:52 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:20:50 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:20:50 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 120, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 116, in startTest
pshellTestGeneral.sendFeedback(testPath, testName, DEVICE, ret, success)
NameError: global name 'pshellTestGeneral' is not defined
Aug 18, 2015 11:20:50 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:20:50 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,94 +0,0 @@
Aug 18, 2015 11:21:20 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:21:28 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:21:29 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 120, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 116, in startTest
pshellTestGeneral.sendFeedback(testPath, testName, DEVICE, ret, success)
UnboundLocalError: local variable 'testPath' referenced before assignment
Aug 18, 2015 11:21:29 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:21:29 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:23:06 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:23:06 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 120, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 116, in startTest
pshellTestGeneral.sendFeedback(testPath, testName, DEVICE, ret, success)
UnboundLocalError: local variable 'pshellTestGeneral' referenced before assignment
Aug 18, 2015 11:23:06 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:23:06 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:23:29 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:23:29 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 117, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 113, in startTest
pshellTestGeneral.sendFeedback(testPath, testName, DEVICE, ret, success)
UnboundLocalError: local variable 'pshellTestGeneral' referenced before assignment
Aug 18, 2015 11:23:29 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:23:29 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:27:37 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:27:37 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 117, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 113, in startTest
pshellTestGeneral.sendFeedback(testPath, testName, DEVICE, ret, success)
UnboundLocalError: local variable 'testPath' referenced before assignment
Aug 18, 2015 11:27:37 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:27:37 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:28:42 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:28:47 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:28:47 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: java.lang.InterruptedException: java.lang.InterruptedException
Aug 18, 2015 11:28:47 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:28:47 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:28:53 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:28:59 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 118, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 114, in startTest
pshellTestGeneral.sendFeedback(testPath, testName, DEVICE, ret, success)
File ".\home\script\pshellTestGeneral.py", line 20, in sendFeedback
set_return(ret)
NameError: global name 'set_return' is not defined
Aug 18, 2015 11:28:59 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:28:59 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,20 +0,0 @@
Aug 18, 2015 11:30:07 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:30:13 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:30:14 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 5, in <module>
import sys, inspect, os, traceback, time, pshellTestGeneral
File ".\home\script\pshellTestGeneral.py", line 2, in <module>
import sys, inspect, os, traceback, time, startup
File ".\home\script\Lib\startup.py", line 751, in <module>
ca_channel_path=os.path.join(controller.setup.getStandardLibraryPath(), "epics")
NameError: name 'controller' is not defined
Aug 18, 2015 11:30:14 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:30:14 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,28 +0,0 @@
Aug 18, 2015 11:30:45 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:30:48 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:30:48 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.core.Controller$ControllerStateException: Invalid controler state: Initializing
Aug 18, 2015 11:30:48 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:30:48 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:30:52 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:31:00 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 118, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 114, in startTest
pshellTestGeneral.sendFeedback(testPath, testName, DEVICE, ret, success)
File ".\home\script\pshellTestGeneral.py", line 20, in sendFeedback
startup.set_return(ret)
NameError: global name 'startup' is not defined
Aug 18, 2015 11:31:00 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:31:00 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,28 +0,0 @@
Aug 18, 2015 11:34:26 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:34:31 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:34:31 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.core.Controller$ControllerStateException: Invalid controler state: Initializing
Aug 18, 2015 11:34:31 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:34:31 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:34:34 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:34:35 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 5, in <module>
import sys, inspect, os, traceback, time, pshellTestGeneral
File ".\home\script\pshellTestGeneral.py", line 3, in <module>
from startup import set_return
File ".\home\script\Lib\startup.py", line 751, in <module>
ca_channel_path=os.path.join(controller.setup.getStandardLibraryPath(), "epics")
NameError: name 'controller' is not defined
Aug 18, 2015 11:34:35 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:34:35 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,28 +0,0 @@
Aug 18, 2015 11:40:49 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:40:53 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:40:53 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.core.Controller$ControllerStateException: Invalid controler state: Initializing
Aug 18, 2015 11:40:53 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:40:53 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 11:40:55 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:40:57 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 5, in <module>
import sys, inspect, os, traceback, time, pshellTestGeneral
File ".\home\script\pshellTestGeneral.py", line 3, in <module>
from startup import set_return
File ".\home\script\Lib\startup.py", line 751, in <module>
ca_channel_path=os.path.join(controller.setup.getStandardLibraryPath(), "epics")
NameError: name 'controller' is not defined
Aug 18, 2015 11:40:57 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:40:57 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,20 +0,0 @@
Aug 18, 2015 11:41:34 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:41:40 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:41:48 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 123, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 119, in startTest
sendFeedback(ret, success)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 9, in sendFeedback
ret = pshellTestGeneral.buildFeedback(testPath, testName, DEVICE, returnString, testPassed)
NameError: global name 'testPath' is not defined
Aug 18, 2015 11:41:48 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:41:48 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,20 +0,0 @@
Aug 18, 2015 11:42:49 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:42:56 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:43:04 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 123, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 119, in startTest
sendFeedback(ret, success)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 9, in sendFeedback
ret = pshellTestGeneral.buildFeedback(testPath, testName, DEVICE, returnString, testPassed)
NameError: global name 'testPath' is not defined
Aug 18, 2015 11:43:04 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:43:04 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,20 +0,0 @@
Aug 18, 2015 11:44:22 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:44:29 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:44:37 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.exception: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 124, in <module>
startTest(test, device, parameters)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 120, in startTest
sendFeedback(ret, success)
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 9, in sendFeedback
ret = pshellTestGeneral.buildFeedback(testPath, testName, DEVICE, returnString, testPassed)
NameError: global name 'testName' is not defined
Aug 18, 2015 11:44:37 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:44:37 AM TestingList setToStopped
INFO: End of tests.

View File

@@ -1,19 +0,0 @@
Aug 18, 2015 11:45:11 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 11:45:18 AM TestingList$RunTest executeParallelTestsGroup
INFO: Running test 'Calibrate' with the following parameters: {repeatTimes={description=Repeat N times, value=2}, delayS={description=Delay between each initialisation [s], value=4}}
Aug 18, 2015 11:45:18 AM TestingList showResult
SEVERE: Failure - Device: PO2DV-NCS-LS; Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py; Result: ch.psi.pshell.scripting.StatementException: __builtin__.syntaxerror: Traceback (most recent call last):
File "<script>", line 656, in call
File "<script>", line 836, in run
File ".\home\script\tests\tests\Linear Slide Tests\Calibrate\Calibrate.py", line 13
SyntaxError: name 'testName' is local and global
Aug 18, 2015 11:45:18 AM TestingList showResult
SEVERE: Cant find Test: .\\home\\script\\tests\\tests\\Linear Slide Tests\\Calibrate\\Calibrate.py in table.
Aug 18, 2015 11:45:18 AM TestingList setToStopped
INFO: End of tests.
Aug 18, 2015 2:22:12 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 2:23:06 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,4 +0,0 @@
Aug 18, 2015 2:22:12 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 2:23:06 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 18, 2015 2:23:06 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 18, 2015 2:46:12 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,6 +0,0 @@
Aug 18, 2015 2:55:16 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 2:56:49 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 2:58:11 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,4 +0,0 @@
Aug 18, 2015 2:56:49 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 18, 2015 2:58:11 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 18, 2015 2:58:11 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,6 +0,0 @@
Aug 21, 2015 11:11:42 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:22:28 AM TestingList setToStopped
INFO: End of tests.
Aug 21, 2015 11:23:30 AM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 21, 2015 11:23:30 AM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 21, 2015 11:25:21 AM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,30 +0,0 @@
Aug 21, 2015 11:51:08 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:52:00 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:53:06 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:58:19 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:59:18 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:59:47 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:25 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:54 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:01:56 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,28 +0,0 @@
Aug 21, 2015 11:52:00 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:53:06 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:58:19 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:59:18 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:59:47 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:25 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:54 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:01:56 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,26 +0,0 @@
Aug 21, 2015 11:53:06 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:58:19 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:59:18 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:59:47 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:25 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:54 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:01:56 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,24 +0,0 @@
Aug 21, 2015 11:58:19 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:59:18 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:59:47 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:25 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:54 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:01:56 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,22 +0,0 @@
Aug 21, 2015 11:59:18 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 11:59:47 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:25 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:54 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:01:56 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,20 +0,0 @@
Aug 21, 2015 11:59:47 AM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:25 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:54 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:01:56 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,18 +0,0 @@
Aug 21, 2015 12:00:25 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:00:54 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:01:56 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,16 +0,0 @@
Aug 21, 2015 12:00:54 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:01:56 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,14 +0,0 @@
Aug 21, 2015 12:01:56 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,12 +0,0 @@
Aug 21, 2015 12:03:24 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,10 +0,0 @@
Aug 21, 2015 12:04:05 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,8 +0,0 @@
Aug 21, 2015 12:04:37 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,6 +0,0 @@
Aug 21, 2015 12:05:04 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,4 +0,0 @@
Aug 21, 2015 2:12:47 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,2 +0,0 @@
Aug 21, 2015 3:05:42 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,6 +0,0 @@
Aug 21, 2015 3:07:15 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:10:52 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:12:45 PM TestingList loadTests
INFO: 11 tests loaded.

View File

@@ -1,4 +0,0 @@
Aug 21, 2015 3:10:52 PM TestingList loadTests
INFO: 11 tests loaded.
Aug 21, 2015 3:12:45 PM TestingList loadTests
INFO: 11 tests loaded.

Some files were not shown because too many files have changed in this diff Show More