Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:22

0001 #!/bin/sh
0002 
0003 
0004 # Pass in name and status
0005 function die { echo $1: status $2 ;  exit $2; }
0006 cmsRun ${SCRAM_TEST_PATH}/write_cfg.py || die 'failed to write conditions' $?
0007 cmsRun ${SCRAM_TEST_PATH}/read_cfg.py || die 'failed to read conditions' $?
0008 
0009 cmsRun ${SCRAM_TEST_PATH}/write2_cfg.py || die 'failed to write conditions by discovering what is in a record' $?
0010 cmsRun ${SCRAM_TEST_PATH}/read_cfg.py || die 'failed to read conditions which used auto discovery' $?
0011