Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:58

0001 #!/bin/sh
0002 
0003 # Pass in name and status
0004 function die { echo $1: status $2 ;  exit $2; }
0005 
0006 for file in ${CMSSW_BASE}/src/FWCore/ParameterSet/python/*.py
0007 do
0008   bn=`basename $file`
0009   if [ "$bn" != "__init__.py" ]; then
0010      bnm=${bn%.*} 
0011      python3 -m FWCore.ParameterSet."$bnm" || die "unit tests for $bn failed" $?
0012   fi
0013 done