Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # Runs using configuration cfi file that contains none of the required
0002 # parameters to test that the required ones are properly inserted
0003 # during validation
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 process = cms.Process("TEST")
0008 
0009 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0010 
0011 process.maxEvents = cms.untracked.PSet(
0012     input = cms.untracked.int32(1)
0013 )
0014 
0015 process.source = cms.Source("EmptySource")
0016 
0017 # expects this cfi file to be in the current directory
0018 # usually run from the tmp/slc4_ia32_gcc345 directory
0019 # where the cfi was just created by the test script
0020 from FWCore.Integration.testProducerWithPsetDescEmpty_cfi import *
0021 
0022 process.testProducerWithPsetDesc = testProducerWithPsetDesc
0023 
0024 process.p1 = cms.Path(process.testProducerWithPsetDesc)