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
|
# Unit test configuration file for FlushMessageLog in MessageLogger service:
# Tests effect of LogFlush by cfg-configurable choices of how many
# messages to use to clog the queue and whether or not FlushMessageLog
# is invoked. Under normal testing, it will invoke FlushMessageLog in
# a situation where its absence would result in different output.
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.MessageLogger = cms.Service("MessageLogger",
default = cms.untracked.PSet(
FwkTest = cms.untracked.PSet(
limit = cms.untracked.int32(0)
)
),
cerr = cms.untracked.PSet(
enable = cms.untracked.bool(False)
),
files = cms.untracked.PSet(
u22_warnings = cms.untracked.PSet(
threshold = cms.untracked.string('WARNING'),
noTimeStamps = cms.untracked.bool(True),
FwkTest = cms.untracked.PSet(
limit = cms.untracked.int32(0)
),
)
)
)
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(1)
)
process.source = cms.Source("EmptySource")
process.sendSomeMessages = cms.EDAnalyzer("UnitTestClient_P",
queueFillers = cms.untracked.int32(500),
useLogFlush = cms.untracked.bool(True)
)
process.p = cms.Path(process.sendSomeMessages)
|