X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=lcov_reports.sh;h=e2b48e3cade1f7c88ffacb85eeb6b63239075f04;hb=9afe243148ea67f2eccbd0afa419541424de451e;hp=ebd0c76a13e29732ac949a37e7704c597cd92cd7;hpb=d31aeb26b6032d53bf0a489a8b70421506736109;p=modules%2Fshaper.git diff --git a/lcov_reports.sh b/lcov_reports.sh index ebd0c76a1..e2b48e3ca 100755 --- a/lcov_reports.sh +++ b/lcov_reports.sh @@ -9,8 +9,7 @@ lcov --capture --directory ${BUILD_DIR} --no-external --base-directory ${SOURCES # make a working copy of report cp -f coverage.info.noext covfile # remove all reports of GUI and external parts (for all the next kinds of reports) -# RefAttrList is unused type of attribute for now -for MASK in '*wrap*' 'moc_*' 'XAO_*' 'SketcherPrs_*' 'GeomAlgoImpl_*' 'ModuleBase_*' '*Widget*' '*Splitter*' '*RefAttrList*'; do +for MASK in '*wrap*' 'moc_*' 'XAO_*' 'SketcherPrs_*' 'GeomAlgoImpl_*' 'ModuleBase_*' '*Widget*' '*Splitter*'; do lcov -r covfile ${MASK} --output-file covfile_res -q mv -f covfile_res covfile done @@ -65,9 +64,6 @@ for MASK in $ALL; do mv -f covElse_res covElse fi done -# remove SketchPlugin's Ellipse feature (unsupported yet) -lcov -r covElse SketchPlugin*Ellipse* --output-file covElse_res -q -mv -f covElse_res covElse rm -rf lcov_htmlElse genhtml covElse --output-directory lcov_htmlElse -q