-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement framework modules for MPI-related tests #46790
base: master
Are you sure you want to change the base?
Conversation
please test |
cms-bot internal usage |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46790/42774 |
A new Pull Request was created by @fwyzard for master. It involves the following packages:
@Dr15Jones, @makortel, @smuzaffar can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
-1 Failed Tests: UnitTests Unit TestsI found 1 errors in the following unit tests: ---> test TestFWCoreModulesEventIDValidator had ERRORS Comparison SummarySummary:
|
69cf0d9
to
271511c
Compare
please test |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46790/42775
|
Pull request #46790 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again. |
+1 Size: This PR adds an extra 20KB to repository Comparison SummarySummary:
|
0c5e1f7
to
302c64d
Compare
|
please test |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46790/42789
|
Pull request #46790 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again. |
-1 Failed Tests: HeaderConsistency UnitTests Unit TestsI found 1 errors in the following unit tests: ---> test TestFWCoreModulesEmptySourceFromEventIDs had ERRORS Comparison SummarySummary:
|
This EDProducer will clone all the event products declared by its configuration, using their ROOT dictionaries. Refactor common functionality with GenericConsumer.
302c64d
to
339cf8b
Compare
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46790/42794
|
Pull request #46790 was updated. @Dr15Jones, @cmsbuild, @makortel, @smuzaffar can you please check and sign again. |
please test |
PR description:
Implement additional framework modules used to test and validate the behaviour of the MPI-based modules developed in #32632:
EmptySourceFromEventIDs
is a variation of theEmptySource
that creates runs, lumis and events (containing no products) based on the list ofEventID
s provided in the configuration;edmtest::EventIDProducer
reads theEventID
from the current event and copies it into theEvent
as a data product;edmtest::EventIDValidator
reads theEventID
from the current event and compares it to a data product read from theEvent
;edmtest::GenericCloner
will clone all the event products declared by its configuration, using their ROOT dictionaries.EmptySourceFromEventIDs
can be used to test how aSource
reacts to arbitrary transitions.EventIDProducer
andEventIDValidator
can be used to validate that an object produced in a given event is being read back in the same event.GenericCloner
can be used to test the ROOT serialisation and deserialisation code.PR validation:
The unit tests for the new modules pass.