Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #!/bin/bash
0002 
0003 #sed on Linux and OS X have different command line options
0004 case `uname` in Darwin) SED_OPT="-i '' -E";;*) SED_OPT="-i -r";; esac ;
0005 
0006 status=0
0007   
0008 rm -f  u12_warnings.log u12_placeholder.log  
0009 
0010 cmsRun ${SCRAM_TEST_PATH}/u12_cfg.py || exit $?
0011  
0012 for file in  u12_warnings.log    
0013 do
0014   sed $SED_OPT -f ${SCRAM_TEST_PATH}/filter-timestamps.sed $file
0015   diff ${SCRAM_TEST_PATH}/unit_test_outputs/$file ./$file
0016   if [ $? -ne 0 ]  
0017   then
0018     echo The above discrepancies concern $file 
0019     status=1
0020   fi
0021 done
0022 
0023 for file in u12_placeholder.log
0024 do
0025   if [ -f $file ]
0026   then
0027     echo A placeholder file was created when it should not be: $file
0028     status=1
0029   fi
0030 done
0031 
0032 exit $status