-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1317: Memory leak exposed by address sanitizer in insertable_collection example #1332
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #1332 +/- ##
===========================================
+ Coverage 82.25% 82.28% +0.03%
===========================================
Files 734 734
Lines 28100 28100
===========================================
+ Hits 23114 23123 +9
+ Misses 4986 4977 -9
|
88fb1a4
to
b14f8b6
Compare
In the end it's I have verified that this is enough to silence the error.
|
b14f8b6
to
8350343
Compare
6c064a4
to
95de953
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of baking this into the dockerfiles (and thus the container images) I think it would be better to make it a variable that can be passed through from docker-compose. What do you think?
Sounds reasonable, it will allow to keep non-asan builds cleaner 👍 |
1011a1a
to
18f2c20
Compare
18f2c20
to
f7c5fde
Compare
@@ -44,6 +44,7 @@ variables: | |||
TS_YEAR: 0 | |||
TS_MONTH: 0 | |||
TS_DAY: 0 | |||
[% IF lsan_options %] LSAN_OPTIONS: [% lsan_options %][% END %] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make sure that there is no trailing whitespace (IF
works better here than enabling TRIM
option or using [% -%]
)
@lifflander edit: the build has passed after a couple of re-runs |
When limitation was it hitting? Time limit or memory? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
It was disk space. |
fixes #1317