#!/bin/env bash # build-aux/valgrind - Wrapper around valgrind to keep flags consistent # # Copyright (C) 2025 Luke T. Shumaker # 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 \ -- \ "$@"