X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f89671e0bd7450461d70d5ced6079123e73c2a63..859426901ee9f30f5c27a9e8142edf84622e3f2d:/sonar-project.properties diff --git a/sonar-project.properties b/sonar-project.properties index 5ea8aa1b0b..30b086fbfb 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -14,31 +14,31 @@ 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 -sonar.issue.ignore.multicriteria.j1.ruleKey=squid:ObjectFinalizeOverridenCheck +sonar.issue.ignore.multicriteria.j1.ruleKey=java:S1113 sonar.issue.ignore.multicriteria.j1.resourceKey=**/*.java # Throwable.printStackTrace(...) should not be called -# But we don't have no better mechanism, and our Java apps are not rocket science -sonar.issue.ignore.multicriteria.j2.ruleKey=squid:S1148 +# But we don't have no better mechanism, and our Java apps are not rocket science +sonar.issue.ignore.multicriteria.j2.ruleKey=java:S1148 sonar.issue.ignore.multicriteria.j2.resourceKey=**/*.java # Using command line arguments is security-sensitive -# But the authors of the applications using our library will be their only users, so there is no security concern -sonar.issue.ignore.multicriteria.j3.ruleKey=squid:S4823 +# But the authors of the applications using our library will be their only users, so there is no security concern +sonar.issue.ignore.multicriteria.j3.ruleKey=java:S4823 sonar.issue.ignore.multicriteria.j3.resourceKey=**/*.java # Standard outputs should not be used directly to log anything -# But this file is used before SimGrid is initialized -sonar.issue.ignore.multicriteria.j4.ruleKey=squid:S106 +# But this file is used before SimGrid is initialized +sonar.issue.ignore.multicriteria.j4.ruleKey=java:S106 sonar.issue.ignore.multicriteria.j4.resourceKey=src/bindings/java/org/simgrid/NativeLib.java # Deprecated code should be removed # We do have a process to remove deprecated code -sonar.issue.ignore.multicriteria.j5.ruleKey=squid:S1133 +sonar.issue.ignore.multicriteria.j5.ruleKey=java:S1133 sonar.issue.ignore.multicriteria.j5.resourceKey=**/*.java # "reinterpret_cast" should not be used @@ -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) @@ -170,7 +175,7 @@ sonar.coverage.exclusions=teshsuite/smpi/isp/**,teshsuite/smpi/mpich3-test/**,** sonar.sourceEncoding=UTF-8 # Version of the used prog languages -sonar.java.source=7 +sonar.java.source=8 sonar.java.binaries=CMakeFiles/simgrid-java_jar.dir,examples/deprecated/java # Don't talk to me: travis don't like your verbosity @@ -181,6 +186,8 @@ sonar.java.binaries=CMakeFiles/simgrid-java_jar.dir,examples/deprecated/java #sonar.java.binaries #sonar.cfamily.build-wrapper-output #sonar.cfamily.gcov.reportsPath -#sonar.python.coverage.reportPath +#sonar.python.coverage.reportPaths #sonar.coverage.jacoco.xmlReportPaths #sonar.cfamily.threads +#sonar.cfamily.cache.enabled +#sonar.cfamily.cache.path