/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/MessageLogger/test/testMakeJobReport.sh
13 строк
388 B
Chris Jones
Move JobReport class tests to FWCore/MessageLogger
13 апр 2026, 19:23
13 апр 2026, 19:23
fdf34a3
Код
Авторство
О чём код?
#!/bin/bash set -exuo pipefail function die { echo "Failure $1: status $2" ; it $2 ; } makeJobReport > jobreport.xml 2>&1 || die "makeJobReport" $? cat jobreport.xml | ${LOCALTOP}/src/FWCore/MessageLogger/test/validateXML.py || die "validateXML" $? diff -u ${LOCALTOP}/src/FWCore/MessageLogger/test/unit_test_outputs/makeJobReport_expected.xml jobreport.xml || die "diff" $? exit 0