Skip to content

Commit

Permalink
ci: temporarily disable LeakSanitizer due to Rust/LLVM bug (#80)
Browse files Browse the repository at this point in the history
Disabled LeakSanitizer due to upstream issue:
rust-lang/rust#111073
  • Loading branch information
intgr committed Apr 9, 2024
1 parent 991a301 commit 6bd9b1b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -29,8 +29,9 @@ jobs:
run: docker run --rm posixacl-nightly cargo test --color=always
# Run sanitizer checks. Only allowed on Rust nightly. https://github.com/japaric/rust-san
# Cannot run sanitizers from Dockerfile, CAP_PTRACE is disallowed :(
- name: LeakSanitizer
run: docker run --rm --env RUSTFLAGS="-Z sanitizer=leak" posixacl-nightly cargo test --color=always
# DISABLED TEMPORARILY due to https://github.com/rust-lang/rust/issues/111073
#- name: LeakSanitizer
# run: docker run --rm --env RUSTFLAGS="-Z sanitizer=leak" posixacl-nightly cargo test --color=always
- name: AddressSanitizer
# --tests to omit doc tests, doesn't play nice with AddressSanitizer
run: docker run --rm --env RUSTFLAGS="-Z sanitizer=address" posixacl-nightly cargo test --tests --color=always
Expand Down

0 comments on commit 6bd9b1b

Please sign in to comment.