Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #!/bin/bash
0002 
0003 # Pass in name and status
0004 function die { echo $1: status $2 ;  exit $2; }
0005 
0006 LOCAL_TEST_DIR="${CMSSW_BASE}/src/FWCore/Framework/test"
0007 F1=${LOCAL_TEST_DIR}/test_emptyPathWithTask_cfg.py
0008 F2=${LOCAL_TEST_DIR}/test_emptyEndPathWithTask_cfg.py
0009 
0010 (cmsRun $F1 ) || die "Failure using $F1" $?
0011 (cmsRun $F2 ) || die "Failure using $F2" $?
0012 
0013