File indexing completed on 2024-04-06 12:13:27
0001
0002 function die { echo $1: status $2 ; exit $2; }
0003
0004
0005 echo "******************"
0006 echo "Signal in constructor"
0007 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 0 1) && die "signal in constructor didn't fail" 1
0008 echo "******************"
0009 echo "Signal in beginLumi"
0010 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 1 1) && die "signal in begin lumi didn't fail" 1
0011 echo "******************"
0012 echo "Signal in event"
0013 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 2 1) && die "signal in event didn't fail" 1
0014
0015
0016 echo "******************"
0017 echo "Exception in constructor"
0018 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 0 0) && die "exception in constructor didn't fail" 1
0019 echo "******************"
0020 echo "Exception in beginLumi"
0021 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 1 0) && die "exception in begin lumi didn't fail" 1
0022 echo "******************"
0023 echo "Exception in event"
0024 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 2 0) && die "exception in event didn't fail" 1
0025
0026 echo "******************"
0027 echo "terminate in constructor"
0028 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 0 2) && die "signal in constructor didn't fail" 1
0029 echo "******************"
0030 echo "terminate in beginLumi"
0031 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 1 2) && die "signal in begin lumi didn't fail" 1
0032 echo "******************"
0033 echo "terminate in event"
0034 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 2 2) && die "signal in event didn't fail" 1
0035
0036 echo "******************"
0037 echo "exit in constructor"
0038 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 0 3) && die "signal in constructor didn't fail" 1
0039 echo "******************"
0040 echo "exit in beginLumi"
0041 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 1 3) && die "signal in begin lumi didn't fail" 1
0042 echo "******************"
0043 echo "exit in event"
0044 (cmsRun ${LOCALTOP}/src/GeneratorInterface/Core/test/test_FailingGeneratorFilter_cfg.py 2 3) && die "signal in event didn't fail" 1
0045
0046
0047 exit 0