Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / sonar-project.properties
1 # This file is used to scan the project for issues automatically 
2 # Browse the result here: https://nemo.sonarqube.org/overview?id=simgrid
3
4 sonar.projectKey=simgrid
5 sonar.projectName=SimGrid
6 sonar.projectVersion=3.15
7
8 sonar.links.homepage=http://simgrid.org
9 sonar.links.issue=https://github.com/simgrid/simgrid/issues
10 sonar.links.scm=https://github.com/simgrid/simgrid.git
11 # Comma-separated paths to directories with sources (required)
12 sonar.sources=src,examples,include,teshsuite
13
14
15 # Disable some rules on some files
16 sonar.issue.ignore.multicriteria=j1,jni1,jni2,jni3,c1,c2
17
18 # The Object.finalize() method should not be overriden
19 # But we need to clean the native memory with JNI
20 sonar.issue.ignore.multicriteria.j1.ruleKey=squid:ObjectFinalizeOverridenCheck
21 sonar.issue.ignore.multicriteria.j1.resourceKey=**/*.java
22
23 # "reinterpret_cast" should not be used
24 # But this is exactly intended to store a pointer into a long -- what we do here
25 sonar.issue.ignore.multicriteria.jni1.ruleKey=cpp:S3630
26 sonar.issue.ignore.multicriteria.jni1.resourceKey=src/bindings/java/*.cpp
27
28 # Pointers should not be cast to integral types
29 # But we need that for jMSG
30 sonar.issue.ignore.multicriteria.jni2.ruleKey=cpp:S1767
31 sonar.issue.ignore.multicriteria.jni2.resourceKey=src/bindings/java/*.cpp
32
33 # Unused function parameters should be removed
34 # But JNI mandates these parameters
35 sonar.issue.ignore.multicriteria.jni3.ruleKey=cpp:S1172
36 sonar.issue.ignore.multicriteria.jni3.resourceKey=src/bindings/java/*.cpp
37
38 # Preprocessor operators "#" and "##" should not be used
39 # This poses portability issues, but we check our usage on a large panel of architectures on purpose
40 sonar.issue.ignore.multicriteria.c1.ruleKey=cpp:PPStringifyAndPastingUsage
41 sonar.issue.ignore.multicriteria.c1.resourceKey=**/*.cpp
42
43 # Macro names should comply with a naming convention
44 # But the macros in this file are named after the MPI standard
45 sonar.issue.ignore.multicriteria.c2.ruleKey=c:PPMacroName
46 sonar.issue.ignore.multicriteria.c2.resourceKey=include/smpi/smpi_extended_traces.h
47
48
49
50 # Exclude some files from the analysis:
51 #  - our unit tests 
52 #  - the tests that we borrowed elsewhere (MPICH and ISP)
53 #  - Flex-generated files
54 #  - Collectives that we borrowed elsewhere (mpich, openMPI and other implems)
55 #  - the NAS, that are included in our examples
56 #  - RngStream, that is included in SimGrid
57 sonar.exclusions=src/*_unit.c*,teshsuite/smpi/mpich3-test/**,teshsuite/smpi/isp/**,**/*_dtd.c,**/*_dtd.h,**/*yy.c,src/smpi/colls/*,examples/smpi/NAS/*,src/xbt/RngStream.c,include/xbt/RngStream.h
58
59 # Exclude our examples from the duplication detection.
60 # Examples are expected to be somehow repetitive
61 sonar.cpd.exclusions=examples/**
62
63 # Ignore some files based on regex on their content (not working)
64 #sonar.issue.ignore.allfile=flexGenerated,flexMLGenerated
65 #  - The one that are generated from Flex
66 #sonar.issue.ignore.allfile.flexGenerated.fileRegexp="generated by flex"
67 #  - The one that are generated from FlexML (the header files are directly generated, not going though Flex)
68 sonar.issue.ignore.allfile.flexMLGenerated.fileRegexp="generated with the FleXML XML processor generator"
69
70 # Ignore the files that SMPI scavenged here and there (not working)
71 #sonar.issue.ignore.allfile=mpiColls
72 #sonar.issue.ignore.allfile.flexGenerated.mpiColls="Ahmad Faraj"
73 #sonar.issue.ignore.allfile=mpivapich
74 #sonar.issue.ignore.allfile.flexGenerated.mpivapich="This file is part of the MVAPICH2 software package"
75 #sonar.issue.ignore.allfile=mpiOmpi
76 #sonar.issue.ignore.allfile.flexGenerated.mpiOmpi="University of Tennessee"
77
78 # The build-wrapper output dir
79 sonar.cfamily.build-wrapper-output=bw-outputs
80
81 # Encoding of the source files
82 sonar.sourceEncoding=UTF-8
83
84 sonar.java.source=7
85 sonar.c.std=gnu11
86 sonar.cpp.std=gnu++11
87
88 # Talk to me (travis don't like it, it's too much)
89 # sonar.verbose=true