Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ignore MSG and friends on sonar
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Fri, 31 Jan 2020 16:56:27 +0000 (17:56 +0100)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Fri, 31 Jan 2020 16:56:34 +0000 (17:56 +0100)
sonar-project.properties

index 30b086f..c6abeec 100644 (file)
@@ -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