mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
validate:launcher: throw valgrind error only for definite loss
errors-for-leak-kinds should be set to definite, because almost every test case , will have possibly lost memory, which may or may not be a leak. And throwing error for all these cases doesn't seem to be correct. https://bugzilla.gnome.org/show_bug.cgi?id=752754
This commit is contained in:
parent
e7b65fe5df
commit
aa2c93c3d4
1 changed files with 3 additions and 0 deletions
|
@ -316,6 +316,9 @@ class Test(Loggable):
|
|||
('tool', 'memcheck'),
|
||||
('leak-check', 'full'),
|
||||
('leak-resolution', 'high'),
|
||||
# TODO: errors-for-leak-kinds should be set to all instead of definite
|
||||
# and all false positives should be added to suppression files.
|
||||
('errors-for-leak-kinds', 'definite'),
|
||||
('num-callers', '20'),
|
||||
('log-file', '"' + vglogsfile + '"'),
|
||||
('error-exitcode', str(VALGRIND_ERROR_CODE)),
|
||||
|
|
Loading…
Reference in a new issue