/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Modules/test/testGenericConsumer.sh
6 строк
357 B
Andrea Bocci
Add a test for the GenericConsumer
28 ноя 2023, 01:49
Не верифицирован
28 ноя 2023, 01:49
eec344d
Код
Авторство
О чём код?
#! /bin/bash [ "${LOCALTOP}" ] || LOCALTOP=$CMSSW_BASE cmsRun ${LOCALTOP}/src/FWCore/Modules/test/testGenericConsumer.py 2>&1 | grep '^TrigReport' | \ awk 'BEGIN { KEEP = 0; } /Module Summary/ { KEEP = 1; } { if (! KEEP) next; print; } /\<thing\>|\<otherThing\>|\<anotherThing\>/ { if ($3 == 0) exit 1; } /\<notRunningThing\>/ { if ($3 != 0) exit 1; }'