File indexing completed on 2021-02-14 13:28:45
0001
0002
0003
0004 case `uname` in Darwin) SED_OPT="-i '' -E";;*) SED_OPT="-i -r";; esac ;
0005
0006 pushd $LOCAL_TMP_DIR
0007
0008 status=0
0009
0010 rm -f u8_overall_unnamed.log u8_overall_specific.log u8_supercede_specific.log u8_non_supercede_common.log u8_specific.log
0011
0012 cmsRun -p $LOCAL_TEST_DIR/u8_cfg.py || exit $?
0013
0014 for file in u8_overall_unnamed.log u8_overall_specific.log u8_supercede_specific.log u8_non_supercede_common.log u8_specific.log
0015 do
0016 sed $SED_OPT -f $LOCAL_TEST_DIR/filter-timestamps.sed $file
0017 diff $LOCAL_TEST_DIR/unit_test_outputs/$file $LOCAL_TMP_DIR/$file
0018 if [ $? -ne 0 ]
0019 then
0020 echo The above discrepancies concern $file
0021 status=1
0022 fi
0023 done
0024
0025 popd
0026
0027 exit $status