Skip to content

Commit

Permalink
Track valgrind origins
Browse files Browse the repository at this point in the history
  • Loading branch information
randombit committed Jun 7, 2024
1 parent bff7cf3 commit 256adc3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/scripts/ci_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,14 @@ def sanitize_kv(some_string):

if target in ['valgrind', 'valgrind-full']:
flags += ['--with-valgrind']
test_prefix = ['valgrind', '--error-exitcode=9', '-v', '--leak-check=full', '--show-reachable=yes']

test_prefix = ['valgrind',
'-v',
'--error-exitcode=9',
'--leak-check=full',
'--show-reachable=yes',
'--track-origins=yes']

# valgrind is single threaded anyway
test_cmd += ['--test-threads=1']

Expand Down

0 comments on commit 256adc3

Please sign in to comment.