Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
a0d11462
Commit
a0d11462
authored
Apr 06, 2023
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable OpenSSL module tests when runing with LSAN
parent
35e60d41
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
4 deletions
+17
-4
.ci/run.sh
.ci/run.sh
+15
-3
.cirrus.yml
.cirrus.yml
+2
-1
No files found.
.ci/run.sh
View file @
a0d11462
...
...
@@ -4,6 +4,7 @@ WorkingDir="$PWD"
UsageString
=
"
$0
build CMAKE_INIT_FILE SOURCE_DIR BUILD_DIR
OR
$0
test BUILD_DIR
OR
$0
test BUILD_DIR EXCLUDES
OR
$0
assert WHAT
"
...
...
@@ -43,12 +44,21 @@ elif [ $# = 2 ]; then
if
[
"
$1
"
=
'test'
]
&&
[
-d
"
$2
"
]
;
then
Mode
=
'test'
BuildDir
=
`
makeAbsolute
$2
`
Excludes
=
""
elif
[
"
$1
"
=
'assert'
]
;
then
Mode
=
'assert'
What
=
"
$2
"
else
usage
fi
elif
[
$#
=
3
]
;
then
if
[
"
$1
"
=
'test'
]
&&
[
-d
"
$2
"
]
;
then
Mode
=
'test'
BuildDir
=
`
makeAbsolute
$2
`
Excludes
=
"
$3
"
else
usage
fi
else
usage
fi
...
...
@@ -80,9 +90,11 @@ runBuild() {
}
runTest
()
{
cd
"
$BuildDir
"
$CTestCommand
--output-on-failure
cd
"
$WorkingDir
"
if
[
-z
"
$Excludes
"
]
;
then
$CTestCommand
--test-dir
"
$BuildDir
"
--output-on-failure
else
$CTestCommand
--test-dir
"
$BuildDir
"
--output-on-failure
-E
"
$Excludes
"
fi
}
runLeakSanitizerCheck
()
{
...
...
.cirrus.yml
View file @
a0d11462
...
...
@@ -10,7 +10,8 @@ debug_build_template: &DEBUG_BUILD_TEMPLATE
asan_build_template
:
&ASAN_BUILD_TEMPLATE
build_script
:
.ci/run.sh build .ci/asan-flags.cmake . build
test_script
:
.ci/run.sh test build
# see GH issue #1396
test_script
:
.ci/run.sh test build openssl
# CentOS 7 EOL: June 2024
centos7_task
:
...
...
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