summaryrefslogtreecommitdiff
path: root/build-aux/valgrind
blob: 7ad2712b2545579b9a18708613eec4cf3634a941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/env bash
# build-aux/valgrind - Wrapper around valgrind to keep flags consistent
#
# Copyright (C) 2025  Luke T. Shumaker <lukeshu@lukeshu.com>
# SPDX-License-Identifier: AGPL-3.0-or-later

exec \
	valgrind \
	--fair-sched=yes \
	--error-exitcode=2 \
	--leak-check=full \
	--show-leak-kinds=all \
	--errors-for-leak-kinds=all \
	--show-error-list=all \
	-- \
	"$@"