Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
038be345
Commit
038be345
authored
Oct 11, 2017
by
PRUVOST Florent
Browse files
use absolute path to files for lcov add tracefile option
parent
63d12f16
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
038be345
...
...
@@ -82,13 +82,13 @@ test_starpu_mpi:
name
:
starpu_mpi_test
expire_in
:
48 hours
paths
:
-
coverage_starpu_mpi.tar.bz2
#
- coverage_starpu_mpi.tar.bz2
-
chameleon_starpu_mpi.lcov
script
:
-
source .gitlab-ci-env.sh
-
git submodule update --init --recursive
-
(cd build && STARPU_SILENT=1 ctest --no-compress-output -R test_shm_s || /usr/bin/true && ctest --no-compress-output -R mpi_s || /usr/bin/true)
-
find -name "*.gcda" | xargs tar cvjf coverage_starpu_mpi.tar.bz2
#
- find -name "*.gcda" | xargs tar cvjf coverage_starpu_mpi.tar.bz2
-
lcov --directory build --capture --output-file chameleon_starpu_mpi.lcov
test_starpu_simgrid
:
...
...
@@ -99,13 +99,13 @@ test_starpu_simgrid:
name
:
starpu_simgrid_test
expire_in
:
48 hours
paths
:
-
coverage_starpu_simgrid.tar.bz2
#
- coverage_starpu_simgrid.tar.bz2
-
chameleon_starpu_simgrid.lcov
script
:
-
source .gitlab-ci-env.sh simu
-
git submodule update --init --recursive
-
(cd build && STARPU_SILENT=1 ctest --no-compress-output -V || /usr/bin/true)
-
find -name "*.gcda" | xargs tar cvjf coverage_starpu_simgrid.tar.bz2
#
- find -name "*.gcda" | xargs tar cvjf coverage_starpu_simgrid.tar.bz2
-
lcov --directory build --capture --output-file chameleon_starpu_simgrid.lcov
test_quark
:
...
...
@@ -116,13 +116,13 @@ test_quark:
name
:
quark_test
expire_in
:
48 hours
paths
:
-
coverage_quark.tar.bz2
#
- coverage_quark.tar.bz2
-
chameleon_quark.lcov
script
:
-
source .gitlab-ci-env.sh
-
git submodule update --init --recursive
-
(cd build && ctest --no-compress-output -R test_shm_s)
-
find -name "*.gcda" | xargs tar cvjf coverage_quark.tar.bz2
#
- find -name "*.gcda" | xargs tar cvjf coverage_quark.tar.bz2
-
lcov --directory build --capture --output-file chameleon_quark.lcov
sonar
:
...
...
@@ -145,11 +145,11 @@ sonar:
-
sonar.log
script
:
-
source .gitlab-ci-env.sh
-
tar xvjf coverage_starpu_simgrid.tar.bz2
-
tar xvjf coverage_starpu_mpi.tar.bz2
-
tar xvjf coverage_quark.tar.bz2
-
lcov -a chameleon_starpu_mpi.lcov -a chameleon_starpu_simgrid.lcov -a chameleon_quark.lcov -o chameleon.lcov
-
genhtml -o coverage chameleon.lcov
#
- tar xvjf coverage_starpu_simgrid.tar.bz2
#
- tar xvjf coverage_starpu_mpi.tar.bz2
#
- tar xvjf coverage_quark.tar.bz2
-
lcov -a
$PWD/
chameleon_starpu_mpi.lcov -a
$PWD/
chameleon_starpu_simgrid.lcov -a
$PWD/
chameleon_quark.lcov -o
$PWD/
chameleon.lcov
#
- genhtml -o coverage chameleon.lcov
-
lcov_cobertura.py chameleon.lcov --output chameleon-coverage.xml
-
./tools/analysis.sh
only
:
...
...
tools/analysis.sh
View file @
038be345
...
...
@@ -15,10 +15,10 @@
# capture coverage
#lcov --directory . --capture --output-file ../chameleon.lcov
lcov
--directory
build
--capture
--output-file
chameleon.lcov
#
lcov --directory build --capture --output-file chameleon.lcov
#cd ..
#genhtml -o coverage chameleon.lcov
lcov_cobertura.py chameleon.lcov
--output
chameleon-coverage.xml
#
lcov_cobertura.py chameleon.lcov --output chameleon-coverage.xml
# filter sources:
# - consider generated files in build
...
...
@@ -30,7 +30,6 @@ lcov_cobertura.py chameleon.lcov --output chameleon-coverage.xml
export
UNDEFINITIONS
=
"-UCHAMELEON_USE_OPENCL -UWIN32 -UWIN64 -U_MSC_EXTENSIONS -U_MSC_VER -U__SUNPRO_C -U__SUNPRO_CC -U__sun -Usun -U__cplusplus"
# run cppcheck analysis
cppcheck
-v
-f
--language
=
c
--platform
=
unix64
--enable
=
all
--xml
--xml-version
=
2
--suppress
=
missingIncludeSystem
${
UNDEFINITIONS
}
--file-list
=
./filelist.txt 2> chameleon-cppcheck.xml
#cppcheck -v -f --language=c --platform=unix64 --enable=all --xml --xml-version=2 --suppress=missingIncludeSystem ${UNDEFINITIONS} `cat filelist.txt` 2> chameleon-cppcheck.xml
# run rats analysis
rats
-w
3
--xml
`
cat
filelist.txt
`
>
chameleon-rats.xml
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment