Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JenkinsConfiguration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ChimeraTK Mirror
JenkinsConfiguration
Commits
0e6f4dd3
Commit
0e6f4dd3
authored
6 years ago
by
Martin Christoph Hierholzer
Browse files
Options
Downloads
Patches
Plain Diff
allow excluding tests from valgrind
parent
72c26263
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vars/analysis.groovy
+2
-0
2 additions, 0 deletions
vars/analysis.groovy
vars/helper.groovy
+6
-2
6 additions, 2 deletions
vars/helper.groovy
with
8 additions
and
2 deletions
vars/analysis.groovy
+
2
−
0
View file @
0e6f4dd3
/***********************************************************************************************************************
buildTestDeploy() is called from the .jenkinsfile of each project
Note: set "env.valgrindExcludes" to a space-separated list of test names to be excluded from valgrind before calling!
***********************************************************************************************************************/
...
...
This diff is collapsed.
Click to expand it.
vars/helper.groovy
+
6
−
2
View file @
0e6f4dd3
...
...
@@ -4,6 +4,8 @@
***********************************************************************************************************************/
/**********************************************************************************************************************/
def
doBuildTestDeploy
(
ArrayList
<
String
>
dependencyList
,
String
label
,
String
buildType
)
{
doPrepare
(
true
)
...
...
@@ -257,8 +259,10 @@ def doValgrind(String label, String buildType) {
cd "${dir}"
for test in ${EXECLIST} ; do
testname=`basename ${test}`
sudo -u msk_jenkins valgrind --gen-suppressions=all --trace-children=yes --tool=memcheck --leak-check=full --undef-value-errors=yes --xml=yes --xml-file=valgrind.${testname}.memcheck.valgrind ${test}
# sudo -u msk_jenkins valgrind --gen-suppressions=all --trace-children=yes --tool=helgrind --xml=yes --xml-file=valgrind.${testname}.helgrind.valgrind ${test}
if [ -z "`echo " ${valgrindExcludes} " | grep " ${test} "`" ]; then
sudo -u msk_jenkins valgrind --gen-suppressions=all --trace-children=yes --tool=memcheck --leak-check=full --undef-value-errors=yes --xml=yes --xml-file=valgrind.${testname}.memcheck.valgrind ${test}
# sudo -u msk_jenkins valgrind --gen-suppressions=all --trace-children=yes --tool=helgrind --xml=yes --xml-file=valgrind.${testname}.helgrind.valgrind ${test}
fi
done
cd /scratch/build
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment