1
Fork 0
kantodb/task/nextest-run-valgrind

9 lines
339 B
Text
Raw Permalink Normal View History

2025-03-27 13:45:43 -06:00
#!/bin/sh
set -e
# wish i could set this in profile #ecosystem #severity/low #urgency/low <https://github.com/nextest-rs/nextest/issues/1358>
export CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER=valgrind
export VALGRIND_OPTS='--verbose --gen-suppressions=yes --error-exitcode=1'
export NEXTEST_PROFILE=valgrind
exec cargo nextest run "$@"