X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/29a3b2869c0075fc75e8ccc66fc1d9c4c8bf6a85..e6ec84fd6221e0951ee677e78a2f0a4b25ff38ca:/sonar-project.properties diff --git a/sonar-project.properties b/sonar-project.properties index 99f0f9a110..f160de7f21 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,j3,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 @@ -25,6 +25,11 @@ sonar.issue.ignore.multicriteria.j1.resourceKey=**/*.java sonar.issue.ignore.multicriteria.j2.ruleKey=squid: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 +sonar.issue.ignore.multicriteria.j3.resourceKey=**/*.java + # "reinterpret_cast" should not be used # But this is exactly intended to store a pointer into a long -- what we do here sonar.issue.ignore.multicriteria.jni1.ruleKey=cpp:S3630 @@ -80,12 +85,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) @@ -102,6 +111,9 @@ sonar.cpd.exclusions=examples/**,teshsuite/** # The build-wrapper output dir sonar.cfamily.build-wrapper-output=bw-outputs +# Allow multithreaded execution +sonar.cfamily.threads=4 + # Where the coverage files are located # See https://docs.sonarqube.org/pages/viewpage.action?pageId=5312222 sonar.cfamily.gcov.reportsPath=Testing/CoverageInfo @@ -117,8 +129,6 @@ sonar.sourceEncoding=UTF-8 # Version of the used prog languages sonar.java.source=7 sonar.java.binaries=CMakeFiles/simgrid-java_jar.dir,examples/java -sonar.c.std=gnu11 -sonar.cpp.std=gnu++11 # Don't talk to me: travis don't like your verbosity # sonar.verbose=true