We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3421b07 commit a11c4b2Copy full SHA for a11c4b2
.github/workflows/ci.yml
@@ -60,7 +60,8 @@ jobs:
60
- name: Run cargo test (with valgrind)
61
run: cargo test -- --test-threads=1
62
env:
63
- CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: valgrind -v --error-exitcode=1 --error-limit=no --leak-check=full --show-leak-kinds=all --track-origins=yes --fair-sched=yes
+ # TODO: use --errors-for-leak-kinds=definite,indirect due to upstream bug (https://github.com/rust-lang/rust/issues/135608)
64
+ CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: valgrind -v --error-exitcode=1 --error-limit=no --leak-check=full --show-leak-kinds=all --errors-for-leak-kinds=definite,indirect --track-origins=yes --fair-sched=yes
65
- name: Run cargo test (with portable-atomic enabled)
66
run: cargo test --features portable-atomic
67
- name: Clone async-executor
0 commit comments