From: Martin Quinson Date: Fri, 4 Jan 2019 10:58:35 +0000 (+0100) Subject: sonar: we do have a process to remove deprecated code X-Git-Tag: v3_22~700 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e5735c364d62f83e73281d0cdec4850a6b783983?ds=sidebyside sonar: we do have a process to remove deprecated code --- diff --git a/sonar-project.properties b/sonar-project.properties index 296650a277..3f7ea9945e 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -13,7 +13,7 @@ sonar.sources=src,examples,include,teshsuite # Disable some rules on some files -sonar.issue.ignore.multicriteria=j1,j2,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,c6a,c6b,c7,f1 +sonar.issue.ignore.multicriteria=j1,j2,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,c6a,c6b,c7,c8,f1 # The Object.finalize() method should not be overriden # But we need to clean the native memory with JNI @@ -80,12 +80,16 @@ sonar.issue.ignore.multicriteria.c6b.resourceKey=teshsuite/**/*.cpp sonar.issue.ignore.multicriteria.c7.ruleKey=c:PPStringifyAndPastingUsage sonar.issue.ignore.multicriteria.c7.resourceKey=**/* +# Deprecated code should be removed +# We do have a process to remove deprecated code +sonar.issue.ignore.multicriteria.c8.ruleKey=cpp:S1133 +sonar.issue.ignore.multicriteria.c8.resourceKey=**/* + # "reinterpret_cast" should not be used # But we need this to interface C and Fortran sonar.issue.ignore.multicriteria.f1.ruleKey=cpp:S3630 sonar.issue.ignore.multicriteria.f1.resourceKey=src/smpi/bindings/smpi_f77*.cpp - # Exclude some files from the analysis: # - our unit tests # - the tests that we borrowed elsewhere (MPICH and ISP)