diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-03-17 17:35:13 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-03-17 17:35:13 +0300 |
commit | 6bc8e4a4caaa13b832c88f345e33f94ab4b83a13 (patch) | |
tree | 216123482bf9363dd950406ec9f46c1ddb3fc940 /tests | |
parent | e11d54e8d74099a8b65b8ff21686d7e6db6ac4f4 (diff) | |
download | sciteco-6bc8e4a4caaa13b832c88f345e33f94ab4b83a13.tar.gz |
test suite: perform leak checking when run under Valgrind
This became the default in later Valgrind versions.
With leak checking, the test suite does not currently run cleanly.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/atlocal.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/atlocal.in b/tests/atlocal.in index ef9c43c..adaf928 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -7,7 +7,7 @@ host=@host@ SCITECO="@abs_top_builddir@/src/sciteco" if [ $at_arg_valgrind != false ]; then - SCITECO="valgrind --tool=memcheck --error-exitcode=66 $SCITECO" + SCITECO="valgrind --tool=memcheck --leak-check=full --error-exitcode=66 $SCITECO" fi # For testing command-line editing: |