8 lines
339 B
Bash
Executable file
8 lines
339 B
Bash
Executable file
#!/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 "$@"
|