Skip to content
Snippets Groups Projects
Commit b4dc77f5 authored by Menno Norden's avatar Menno Norden
Browse files

Bug #1315: extra TBB size and Memory test

parent fb06444a
No related branches found
No related tags found
No related merge requests found
# #
# Run the production tests for a LOFAR station # Run the production tests for a LOFAR station
# #
import sys import sys
from optparse import OptionParser from optparse import OptionParser
import cli import cli
import testlog import testlog
################################################################################ ################################################################################
# Parse command line for subrack ID # Parse command line for subrack ID
# #
# -v 0 : only PASSED or FAILED # -v 0 : only PASSED or FAILED
# -v 1 : overall title # -v 1 : overall title
# -v 11 : result per test # -v 11 : result per test
# -v 21 : title per test # -v 21 : title per test
op = OptionParser(usage='usage: python %prog [options]', version='%prog 0.1') op = OptionParser(usage='usage: python %prog [options]', version='%prog 0.1')
op.add_option('-v', type='int', dest='verbosity', op.add_option('-v', type='int', dest='verbosity',
help='Verbosity level',default=11) help='Verbosity level',default=11)
op.add_option('-r', type='int', dest='rsp_nr', op.add_option('-r', type='int', dest='rsp_nr',
help='Provide number of rsp boards that will be used in this test',default=None) help='Provide number of rsp boards that will be used in this test',default=None)
op.add_option('-t', type='int', dest='tbb_nr', op.add_option('-t', type='int', dest='tbb_nr',
help='Provide number of tbb boards that will be used in this test',default=None) help='Provide number of tbb boards that will be used in this test',default=None)
opts, args = op.parse_args() opts, args = op.parse_args()
# - Option checks and/or reformatting # - Option checks and/or reformatting
if opts.rsp_nr==None: if opts.rsp_nr==None:
op.error('Option -r must specify the number of rsp boards') op.error('Option -r must specify the number of rsp boards')
if opts.tbb_nr==None: if opts.tbb_nr==None:
op.error('Option -t must specify the number of tbb boards') op.error('Option -t must specify the number of tbb boards')
if opts.rsp_nr == 4:
################################################################################ RspBrd = 'rsp0,rsp1,rsp2,rsp3'
# Define subrack testlog class for pass/fail and logging SubBrd = 'rsp0'
vlev = opts.verbosity SubRck = 'sub0'
testId = '' if opts.rsp_nr == 12:
appLev = False RspBrd = 'rsp0,rsp1,rsp2,rsp3,rsp4,rsp5,rsp6,rsp7,rsp8,rsp9,rsp10,rsp11'
logName = '/opt/stationtest/data/SUBR-%05d-%05d.dat' % (opts.rsp_nr, opts.tbb_nr) SubBrd = 'rsp0,rsp4,rsp8'
cli.command('rm -f /opt/stationtest/data/SUBR-%05d-%05d.dat', appLev) SubRck = 'sub0,sub1,sub2'
sr = testlog.Testlog(vlev, testId, logName) if opts.rsp_nr == 24:
RspBrd = 'rsp0,rsp1,rsp2,rsp3,rsp4,rsp5,rsp6,rsp7,rsp8,rsp9,rsp10,rsp11,rsp12,rsp13,rsp14,rsp15,rsp16,rsp17,rsp18,rsp19,rsp20,rsp21,rsp22,rsp23'
sr.setResult('PASSED') SubBrd = 'rsp0,rsp4,rsp8,rsp12,rsp16,rsp20'
SubRck = 'sub0,sub1,sub2,sub3,sub4,sub5'
sr.setId('Station - ')
sr.appendLog(11,'') ###############################################################################
sr.appendLog(1,'Station production test %s' % logName) # Define subrack testlog class for pass/fail and logging
sr.appendLog(11,'') vlev = opts.verbosity
testId = ''
appLev = False
################################################################################ logName = '/opt/stationtest/data/SUBR-%05d-%05d.dat' % (opts.rsp_nr, opts.tbb_nr)
sr.setId('RSP version - ') cli.command('rm -f /opt/stationtest/data/SUBR-%05d-%05d.dat', appLev)
sr.appendLog(21,'') sr = testlog.Testlog(vlev, testId, logName)
sr.appendLog(21,'### Verify LCU - RSP ethernet link by getting the RSP version info')
sr.appendLog(21,'') sr.setResult('PASSED')
res = cli.command('./rsp_version.sh')
if res.find('wrong')==-1: sr.setId('Station - ')
sr.appendLog(11,'>>> RSP version test went OK') sr.appendLog(11,'')
else: sr.appendLog(1,'Station production test %s' % logName)
sr.appendLog(11,'>>> RSP version test went wrong') sr.appendLog(11,'')
sr.appendLog(11,'CLI:')
sr.appendLog(11,res,1,1,1)
sr.appendLog(11,'Result:') ################################################################################
sr.appendFile(11,'rsp_version.log') sr.setId('RSP version - ')
sr.appendLog(11,'Expected:') sr.appendLog(21,'')
sr.appendFile(11,'gold/rsp_version.gold') sr.appendLog(21,'### Verify LCU - RSP ethernet link by getting the RSP version info')
sr.setResult('FAILED') sr.appendLog(21,'')
res = cli.command('./rsp_version.sh')
if res.find('wrong')==-1:
################################################################################ sr.appendLog(11,'>>> RSP version test went OK')
sr.setId('TBB version - ') else:
sr.appendLog(21,'') sr.appendLog(11,'>>> RSP version test went wrong')
sr.appendLog(21,'### Verify LCU - TBB ethernet link by getting the TBB version info') sr.appendLog(11,'CLI:')
sr.appendLog(21,'') sr.appendLog(11,res,1,1,1)
res = cli.command('./tbb_version.sh') sr.appendLog(11,'Result:')
if res.find('wrong')==-1: sr.appendFile(11,'rsp_version.log')
sr.appendLog(11,'>>> TBB version test went OK') sr.appendLog(11,'Expected:')
else: sr.appendFile(11,'gold/rsp_version.gold')
sr.appendLog(11,'>>> TBB version test went wrong') sr.setResult('FAILED')
sr.appendLog(11,'CLI:')
sr.appendLog(11,res,1,1,1)
sr.appendLog(11,'Result:') ################################################################################
sr.appendFile(11,'tbb_version.log') sr.setId('TBB version - ')
sr.appendLog(11,'Expected:') sr.appendLog(21,'')
sr.appendFile(11,'gold/tbb_version.gold') sr.appendLog(21,'### Verify LCU - TBB ethernet link by getting the TBB version info')
sr.setResult('FAILED') sr.appendLog(21,'')
res = cli.command('./tbb_version.sh')
if res.find('wrong')==-1:
################################################################################ sr.appendLog(11,'>>> TBB version test went OK')
sr.setId('SPU status - ') else:
sr.appendLog(21,'') sr.appendLog(11,'>>> TBB version test went wrong')
sr.appendLog(21,'### Verify the RSP - SPU I2C interface by reading the SPU sensor data') sr.appendLog(11,'CLI:')
sr.appendLog(21,'') sr.appendLog(11,res,1,1,1)
sr.appendLog(11,'Result:')
res = cli.command('python i2c_spu.py') sr.appendFile(11,'tbb_version.log')
res = cli.command('python i2c_spu.py') sr.appendLog(11,'Expected:')
if res.find('wrong')==-1: sr.appendFile(11,'gold/tbb_version.gold')
sr.appendLog(11,'>>> RSP - SPU I2c interface test went OK') sr.setResult('FAILED')
else:
sr.appendLog(11,'>>> RSP - SPU I2c interface test went wrong') ################################################################################
sr.appendLog(11,'CLI:') sr.setId('TBB size check - ')
sr.appendLog(11,res,1,1,1) sr.appendLog(21,'')
sr.appendLog(11,'Result:') sr.appendLog(21,'### Verify the size of the TBB memory modules')
sr.appendFile(11,'spustat.log') sr.appendLog(21,'')
sr.setResult('FAILED') res = cli.command('./tbb_size.sh')
if res.find('wrong')==-1:
sr.appendLog(11,'>>> TBB size test went OK')
################################################################################ else:
sr.setId('TD status - ') sr.appendLog(11,'>>> TBB size test went wrong')
sr.appendLog(21,'') sr.appendLog(11,'CLI:')
sr.appendLog(21,'### Verify the RSP - TD I2C interface by reading the TD sensor data') sr.appendLog(11,res,1,1,1)
sr.appendLog(21,'') sr.appendLog(11,'Result:')
sr.appendFile(11,'tbb_size.log')
res = cli.command('python i2c_td.py') sr.appendLog(11,'Expected:')
if res.find('wrong')==-1: sr.appendFile(11,'gold/tbb_size.gold')
sr.appendLog(11,'>>> RSP - TD I2c interface test went OK') sr.setResult('FAILED')
else:
sr.appendLog(11,'>>> RSP - TD I2c interface test went wrong')
sr.appendLog(11,'CLI:') ################################################################################
sr.appendLog(11,res,1,1,1) sr.setId('TBB memory check - ')
sr.appendLog(11,'Result:') sr.appendLog(21,'')
sr.appendFile(11,'tdstat.log') sr.appendLog(21,'### Verify TBB memory modules on the TBB')
sr.setResult('FAILED') sr.appendLog(21,'')
res = cli.command('./tbb_memory.sh')
if res.find('wrong')==-1:
################################################################################ sr.appendLog(11,'>>> TBB memory test went OK')
sr.setId('RCU-RSP - ') else:
sr.appendLog(21,'') sr.appendLog(11,'>>> TBB memory test went wrong')
sr.appendLog(21,'### Verify the RCU -> RSP LVDS interfaces by capturing pseudo random data on RSP') sr.appendLog(11,'CLI:')
sr.appendLog(21,'') sr.appendLog(11,res,1,1,1)
sr.appendLog(11,'Result:')
sr.appendFile(11,'tbb_memory.log')
res = cli.command('python verify.py --brd rsp0,rsp1 --fpga blp0,blp1,blp2,blp3 --pol x,y --rep 1 -v 11 --te tc/prsg.py') sr.appendLog(11,'Expected:')
sr.appendFile(11,'gold/tbb_memory.gold')
if res.find('FAILED')==-1: sr.setResult('FAILED')
sr.appendLog(11,'>>> RCU-RSP interface test went OK')
sr.appendFile(21,'tc/prsg.log') ################################################################################
else: sr.setId('SPU status - ')
sr.appendLog(11,'>>> RCU-RSP interface test went wrong') sr.appendLog(21,'')
sr.appendLog(11,'CLI:') sr.appendLog(21,'### Verify the RSP - SPU I2C interface by reading the SPU sensor data')
sr.appendLog(11,res,1,1,1) sr.appendLog(21,'')
sr.appendFile(11,'tc/prsg.log') res = cli.command('python i2c_spu.py --sub %s --rep 1 -v 11' %(SubRck,))
sr.setResult('FAILED') if res.find('FAILED')==-1:
sr.appendLog(11,'>>> RSP - SPU I2c interface test went OK')
################################################################################ else:
sr.setId('Serdes ring -') sr.appendLog(11,'>>> RSP - SPU I2c interface test went wrong')
sr.appendLog(21,'') sr.appendLog(11,'CLI:')
sr.appendLog(21,'### Verify the Serdes ring connection between the RSP boards') sr.appendLog(11,res,1,1,1)
sr.appendLog(21,'') sr.appendLog(11,'Result:')
sr.appendFile(11,'spustat.log')
res = cli.command('python verify.py --brd rsp0,rsp1 --rep 1 -v 21 --te tc/serdes.py') sr.setResult('FAILED')
if res.find('FAILED')==-1:
sr.appendLog(11,'>>> Serdes ring test went OK') ################################################################################
sr.appendLog(21,'tc/serdes.log') sr.setId('TD status - ')
else: sr.appendLog(21,'')
sr.appendLog(11,'>>> Serdes ring test went wrong') sr.appendLog(21,'### Verify the RSP - TD I2C interface by reading the TD sensor data')
sr.appendLog(11,'CLI:') sr.appendLog(21,'')
sr.appendLog(11,res,1,1,1) res = cli.command('python i2c_td.py --sub %s --rep 1 -v 11' %(SubBrd,))
sr.appendLog(11,'tc/serdes.log') if res.find('FAILED')==-1:
sr.appendLog('FAILED') sr.appendLog(11,'>>> RSP - TD I2c interface test went OK')
else:
################################################################################ sr.appendLog(11,'>>> RSP - TD I2c interface test went wrong')
sr.setId('Build In Self Test -') sr.appendLog(11,'CLI:')
sr.appendLog(21,'') sr.appendLog(11,res,1,1,1)
sr.appendLog(21,'### Build In Self Test (BIST)') sr.appendLog(11,'Result:')
sr.appendLog(21,'') sr.appendFile(11,'tdstat.log')
sr.setResult('FAILED')
res = cli.command('python verify.py --brd rsp0,rsp1 tc/bist.py')
if res.find('FAILED')==-1: ################################################################################
sr.appendLog(11,'>>> BIST went OK') sr.setId('RCU-RSP - ')
sr.appendLog(21,'tc/bist.log') sr.appendLog(21,'')
else: sr.appendLog(21,'### Verify the RCU -> RSP LVDS interfaces by capturing pseudo random data on RSP')
sr.appendLog(11,'>>> BIST went wrong') sr.appendLog(21,'')
sr.appendLog(11,'CLI:') res = cli.command('python verify.py --brd %s --fpga blp0,blp1,blp2,blp3 --pol x,y --rep 1 -v 11 --te tc/prsg.py' %(RspBrd,))
sr.appendLog(11,res,1,1,1) if res.find('wrong')==-1:
sr.appendLog(11,'tc/bist.log') sr.appendLog(11,'>>> RCU-RSP interface test went OK')
sr.appendLog('FAILED') sr.appendFile(21,'tc/prsg.log')
else:
################################################################################ sr.appendLog(11,'>>> RCU-RSP interface test went wrong')
sr.setId('RCU-RSP-TBB - ') sr.appendLog(11,'CLI:')
sr.appendLog(21,'') sr.appendLog(11,res,1,1,1)
sr.appendLog(21,'### Verify the RCU - RSP - TBB LVDS interfaces by capturing pseudo random data on TBB') sr.appendFile(11,'tc/prsg.log')
sr.appendLog(21,'') sr.setResult('FAILED')
res = cli.command('./tbb_prbs_tester.sh') ################################################################################
if res.find('wrong')==-1: sr.setId('Serdes ring -')
sr.appendLog(11,'>>> RCU - RSP - TBB LVDS interfaces test went OK') sr.appendLog(21,'')
else: sr.appendLog(21,'### Verify the Serdes ring connection between the RSP boards')
sr.appendLog(11,'>>> RCU - RSP - TBB LVDS interfaces went wrong') sr.appendLog(21,'')
sr.appendLog(11,'CLI:') res = cli.command('python verify.py --brd %s --rep 1 -v 21 --te tc/serdes.py --diag_sync 0' %(RspBrd,))
sr.appendLog(11,res,1,1,1) if res.find('wrong')==-1:
sr.setResult('FAILED') sr.appendLog(11,'>>> Serdes ring test went OK')
sr.appendLog(21,'tc/serdes.log')
else:
################################################################################ sr.appendLog(11,'>>> Serdes ring test went wrong')
# End of the subrack test sr.appendLog(11,'CLI:')
sr.appendLog(11,res,1,1,1)
sr.setId('Subrack - ') sr.appendLog(11,'tc/serdes.log')
dt = sr.getRunTime() sr.appendLog('FAILED')
sr.appendLog(2,'Duration: %02dm:%02ds' % (dt/60 % 60, dt % 60))
sr.appendLog(0,sr.getResult()) ################################################################################
sr.closeLog() sr.setId('Build In Self Test -')
sr.appendLog(21,'')
sr.appendLog(21,'### Build In Self Test (BIST)')
sr.appendLog(21,'')
res = cli.command('python verify.py --brd %s --rep 1 -v 21 --te tc/bist.py' %(RspBrd,))
if res.find('wrong')==-1:
sr.appendLog(11,'>>> BIST went OK')
sr.appendLog(21,'tc/bist.log')
else:
sr.appendLog(11,'>>> BIST went wrong')
sr.appendLog(11,'CLI:')
sr.appendLog(11,res,1,1,1)
sr.appendLog(11,'tc/bist.log')
sr.appendLog('FAILED')
################################################################################
sr.setId('RCU-RSP-TBB - ')
sr.appendLog(21,'')
sr.appendLog(21,'### Verify the RCU - RSP - TBB LVDS interfaces by capturing pseudo random data on TBB')
sr.appendLog(21,'')
res = cli.command('./tbb_prbs_tester.sh')
if res.find('wrong')==-1:
sr.appendLog(11,'>>> RCU - RSP - TBB LVDS interfaces test went OK')
else:
sr.appendLog(11,'>>> RCU - RSP - TBB LVDS interfaces went wrong')
sr.appendLog(11,'CLI:')
sr.appendLog(11,res,1,1,1)
sr.setResult('FAILED')
################################################################################
# End of the subrack test
sr.setId('Subrack - ')
dt = sr.getRunTime()
sr.appendLog(2,'Duration: %02dm:%02ds' % (dt/60 % 60, dt % 60))
sr.appendLog(0,sr.getResult())
sr.closeLog()
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