1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Unit test configuration file for MessageLogger service:
# statistics destination : tests reset versus no reset
# behavior when multiple statistics summaries are triggered
import FWCore.ParameterSet.Config as cms
process = cms.Process("TEST")
import FWCore.Framework.test.cmsExceptionsFatal_cff
process.options = FWCore.Framework.test.cmsExceptionsFatal_cff.options
process.load("FWCore.MessageService.test.Services_cff")
process.MessageLogger = cms.Service("MessageLogger",
cerr = cms.untracked.PSet(
enable = cms.untracked.bool(False)
),
files = cms.untracked.PSet(
u5_errors = cms.untracked.PSet(
threshold = cms.untracked.string('ERROR'),
noTimeStamps = cms.untracked.bool(True),
),
u5_default = cms.untracked.PSet(
enableStatistics = cms.untracked.bool(True),
default = cms.untracked.PSet(
limit = cms.untracked.int32(0)
)
),
u5_noreset = cms.untracked.PSet(
resetStatistics = cms.untracked.bool(False),
enableStatistics = cms.untracked.bool(True),
default = cms.untracked.PSet(
limit = cms.untracked.int32(0)
)
),
u5_reset = cms.untracked.PSet(
resetStatistics = cms.untracked.bool(True),
enableStatistics = cms.untracked.bool(True),
default = cms.untracked.PSet(
limit = cms.untracked.int32(0)
)
)
)
)
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(3)
)
process.source = cms.Source("EmptySource")
process.sendSomeMessages = cms.EDAnalyzer("UnitTestClient_B")
process.p = cms.Path(process.sendSomeMessages)
|