Skip to content
Snippets Groups Projects
Unverified Commit 1ef4d705 authored by ThomasFayESS's avatar ThomasFayESS Committed by GitHub
Browse files

Merge pull request #9 from icshwi/test-err

Direct fail message to output error
parents ef86f081 98fdaa42
No related branches found
No related tags found
No related merge requests found
[ "$1" = "$2" ] && echo "Pass" || echo "***Fail: result = $2***"
[ "$1" = "$2" ] && echo "Pass" || echo "***Fail on test '$3': result = $2***" 1>&2
......@@ -31,4 +31,4 @@ result="$(sis8300drv_reg /dev/sis8300-$slot $reg)"
rshift=$(( $channel % 4 * 8))
result=$(( ($result >> $rshift) & 0x000000FF))
usleep 500000
run "check $state $result"
run "check $state $result 'Test attenuator on channel $channel'"
......@@ -13,7 +13,7 @@ eval "caput -S $LLRF_IOC_NAME:MSGS $1 >/dev/null"
usleep 500000
result=$(caget -t $LLRF_IOC_NAME)
if [ $# -eq 1 ]; then
run "check $1 $result"
run "check $1 $result 'Test state change to $1'"
else
run "check $2 $result"
run "check $2 $result 'Test state change to $1'"
fi
......@@ -34,11 +34,11 @@ run "state_change INIT"
echo "*** VM Output"
echo 'Enable VM'
caput $LLRF_IOC_NAME:VMENBL 1 > /dev/null
run "check 0x700 $(sis8300drv_reg /dev/sis8300-$slot 0x12F)"
run "check 0x700 $(sis8300drv_reg /dev/sis8300-$slot 0x12F) 'Test on Enable VM'"
echo 'Disable VM'
caput $LLRF_IOC_NAME:VMENBL 0 > /dev/null
run "check 0x600 $(sis8300drv_reg /dev/sis8300-$slot 0x12F)"
run "check 0x600 $(sis8300drv_reg /dev/sis8300-$slot 0x12F) 'Test on Disable VM'"
echo '*** Attenuation Parameters'
echo 'Test in INIT state'
......@@ -88,7 +88,7 @@ do
done
result="$(caget -t $LLRF_IOC_NAME:PULSEDONECNT)"
run "check $result 50"
run "check $result 50 'Test simulating backplane triggers'"
echo 'Revert to INIT state'
run "state_change 'RESET' 'RESETTING'"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment