From: Arnaud Giersch Date: Sat, 28 Dec 2019 22:47:44 +0000 (+0100) Subject: [sonar] Ignore cpp:S995 for src/smpi/bindings/. X-Git-Tag: v3.25~195 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/8783e1b06577b3e45fd0f0765daf61ebf25ec570 [sonar] Ignore cpp:S995 for src/smpi/bindings/. --- diff --git a/sonar-project.properties b/sonar-project.properties index 4fbd2e31bf..10df4e04d0 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -14,7 +14,7 @@ sonar.sources=src,examples,include,teshsuite # Disable some rules on some files -sonar.issue.ignore.multicriteria=j1,j2,j3,j4,j5,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,c6a,c6b,c7,c8,c9,c10,f1,p1,s1,s2,s3,s4 +sonar.issue.ignore.multicriteria=j1,j2,j3,j4,j5,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,c6a,c6b,c7,c8,c9,c10,f1,p1,s1,s2,s3,s4,s5 # The Object.finalize() method should not be overridden # But we need to clean the native memory with JNI @@ -138,6 +138,11 @@ sonar.issue.ignore.multicriteria.s3.resourceKey=src/smpi/**/*.cpp sonar.issue.ignore.multicriteria.s4.ruleKey=cpp:S859 sonar.issue.ignore.multicriteria.s4.resourceKey=src/smpi/**/*.cpp +# Pointer and reference parameters should be "const" if the corresponding object is not modified +# AFAICT, the "constness" is required by the MPI standard and cannot be fixed. +sonar.issue.ignore.multicriteria.s5.ruleKey=cpp:S995 +sonar.issue.ignore.multicriteria.s5.resourceKey=src/smpi/bindings/*.cpp + # Exclude some files from the analysis: # - our unit tests # - the tests that we borrowed elsewhere (MPICH and ISP)