ajout de l'analyse c++ avec sonar

This commit is contained in:
antoine 2017-01-08 19:21:23 +01:00 committed by Antoine
parent 3528afe987
commit 714d30e8d7
9 changed files with 1139 additions and 5 deletions

0
.sonar/.sonar_lock Normal file
View File

5
.sonar/report-task.txt Normal file
View File

@ -0,0 +1,5 @@
projectKey=AES-lib
serverUrl=http://localhost:9999
dashboardUrl=http://localhost:9999/dashboard/index/AES-lib
ceTaskId=AVl_T488HdLrEJ0l5eJp
ceTaskUrl=http://localhost:9999/api/ce/task?id=AVl_T488HdLrEJ0l5eJp

View File

@ -29,12 +29,12 @@ valgrind:
clean: cleanO cleanB clean: cleanO cleanB
cleanO: cleanO:
@rm obj/*.o @rm -rf obj/*.o
cleanB: cleanB:
@rm bin/*.ex @rm -rf bin/*.ex
cleanD: cleanD:
@rm data/*.enc @/bin/rm -f data/*.enc
@rm data/*.dec @/bin/rm -f data/*.dec
@rm data/*.key @/bin/rm -f data/*.key

1120
README.html Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

9
sonar-project.properties Normal file
View File

@ -0,0 +1,9 @@
# must be unique in a given SonarQube instance
sonar.projectKey=AES-lib
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=AES-lib
sonar.projectVersion=1.0
sonar.sources=./
sonar.language=c++