From: Martin Quinson Date: Fri, 31 Jan 2020 16:56:27 +0000 (+0100) Subject: ignore MSG and friends on sonar X-Git-Tag: v3.25~12 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/abcbfcc599bf80ecd04bc6c42cbc617333b06649 ignore MSG and friends on sonar --- diff --git a/sonar-project.properties b/sonar-project.properties index 30b086fbfb..c6abeeca13 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -150,7 +150,8 @@ sonar.issue.ignore.multicriteria.s5.resourceKey=src/smpi/bindings/*.cpp # - Collectives that we borrowed elsewhere (mpich, openMPI and other implems) # - the NAS, that are included in our examples # - The Catch2 library, that is included in our unit tests -sonar.exclusions=src/include/catch.hpp,src/*_unit.c*,teshsuite/smpi/mpich3-test/**,teshsuite/smpi/isp/**,**/*_dtd.c,**/*_dtd.h,**/*yy.c,src/xbt/automaton/parserPromela.tab.*,src/smpi/colls/**/*,examples/smpi/NAS/*,examples/smpi/gemm/gemm.c +# - MSG along with its examples and teshsuite, and the simdag examples +sonar.exclusions=src/include/catch.hpp,src/*_unit.c*,teshsuite/smpi/mpich3-test/**,teshsuite/smpi/isp/**,**/*_dtd.c,**/*_dtd.h,**/*yy.c,src/xbt/automaton/parserPromela.tab.*,src/smpi/colls/**/*,examples/smpi/NAS/*,examples/smpi/gemm/gemm.c,src/msg/**,include/msg/**,examples/deprecated/**,teshsuite/msg/** # Exclude our examples from the duplication detection. # Examples are expected to be somehow repetitive @@ -170,7 +171,8 @@ sonar.cfamily.gcov.reportsPath=Testing/CoverageInfo # - XML files # - Python files used to generate either simcalls or deployment files # - Any java source code (it's deprecated now) -sonar.coverage.exclusions=teshsuite/smpi/isp/**,teshsuite/smpi/mpich3-test/**,**/*.xml,src/simix/simcalls.py,**/generate.py,**/*.java,src/bindings/java/** +# - MSG (deprecated too) +sonar.coverage.exclusions=teshsuite/smpi/isp/**,teshsuite/smpi/mpich3-test/**,**/*.xml,src/simix/simcalls.py,**/generate.py,**/*.java,src/bindings/java/**,src/msg/**,include/msg/**,examples/deprecated/**,teshsuite/msg/** # Encoding of the source files sonar.sourceEncoding=UTF-8