Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:20

0001 #!/bin/sh
0002 
0003 LOCAL_TEST_DIR=$CMSSW_BASE/src/CondTools/RunInfo/test
0004 
0005 function die { echo Failure $1: status $2 ; exit $2 ; }
0006 
0007 cmsRun ${LOCAL_TEST_DIR}/test_runinfo_cfg.py | grep '\(run number\)\|\(average current\)' > test_runinfo.run_log || die "cmsRun RefTest_cfg.py" $?
0008 diff test_runinfo.run_log ${LOCAL_TEST_DIR}/test_runinfo_result.log || die 'incorrect output using test_runinfo_cfg.py' $?
0009 rm test_runinfo.run_log