/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/MessageService/test/u33.sh
25 строк
666 B
Kevin Pedro
fix remaining FWCore tests
14 сен 2023, 19:46
14 сен 2023, 19:46
bdbdddd
Код
Авторство
О чём код?
#!/bin/bash #sed on Linux and OS X have different command line options case `uname` in Darwin) SED_OPT="-i '' -E";;*) SED_OPT="-i -r";; esac ; status=0 rm -f u33_all.log cmsRun ${SCRAM_TEST_PATH}/u33_cfg.py || exit $? for file in u33_all.log do sed $SED_OPT -f ${SCRAM_TEST_PATH}/filter-timestamps.sed $file ref_log=${SCRAM_TEST_PATH}/unit_test_outputs/$file [[ " ${CMSSW_VERSION}" == *"_DBG_X"* ]] && [ -e ${SCRAM_TEST_PATH}/unit_test_outputs/DBG/$file ] && ref_log=${SCRAM_TEST_PATH}/unit_test_outputs/DBG/$file diff ${ref_log} ./$file if [ $? -ne 0 ] then echo The above discrepancies concern $file status=1 fi done exit $status