-
Notifications
You must be signed in to change notification settings - Fork 468
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
73 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/bin/bash | ||
|
||
cd "$(dirname "$0")"/.. | ||
set -ex | ||
|
||
if [[ "$OSTYPE" != "linux"* ]]; then | ||
exit 0 | ||
fi | ||
|
||
rustup component add rust-src | ||
|
||
# Run address sanitizer | ||
cargo clean | ||
# https://github.com/crossbeam-rs/crossbeam/issues/614 | ||
export ASAN_OPTIONS="detect_leaks=0" | ||
# TODO: Once `cfg(sanitize = "..")` is stable, replace | ||
# `cfg(crossbeam_sanitize)` with `cfg(sanitize = "..")` and remove | ||
# `--cfg crossbeam_sanitize`. | ||
RUSTFLAGS="-D warnings -Z sanitizer=address --cfg crossbeam_sanitize" \ | ||
cargo test --all --release --target x86_64-unknown-linux-gnu --tests --exclude benchmarks -- --test-threads=1 | ||
|
||
RUSTFLAGS="-D warnings -Z sanitizer=address --cfg crossbeam_sanitize" \ | ||
cargo run \ | ||
--release \ | ||
--target x86_64-unknown-linux-gnu \ | ||
--features nightly \ | ||
--example sanitize \ | ||
--manifest-path crossbeam-epoch/Cargo.toml | ||
|
||
# Run memory sanitizer | ||
cargo clean | ||
RUSTFLAGS="-D warnings -Z sanitizer=memory --cfg crossbeam_sanitize" \ | ||
cargo test -Z build-std --all --release --target x86_64-unknown-linux-gnu --tests --exclude benchmarks -- --test-threads=1 | ||
|
||
# Run thread sanitizer | ||
cargo clean | ||
export TSAN_OPTIONS="suppressions=$(pwd)/ci/tsan" | ||
RUSTFLAGS="-D warnings -Z sanitizer=thread --cfg crossbeam_sanitize" \ | ||
cargo test -Z build-std --all --release --target x86_64-unknown-linux-gnu --tests --exclude benchmarks -- --test-threads=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# TSAN suppressions file for crossbeam | ||
|
||
# The epoch-based GC uses fences. | ||
race:crossbeam_epoch | ||
|
||
# Push and steal operations in crossbeam-deque may cause data races, but such | ||
# data races are safe. If a data race happens, the value read by `steal` is | ||
# forgotten and the steal operation is then retried. | ||
race:crossbeam_deque*push | ||
race:crossbeam_deque*steal | ||
|
||
# AtomicCell::compare_exchange uses fences if it is not lock-free. | ||
race:crossbeam_utils::atomic::atomic_cell::AtomicCell<T>::compare_exchange |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters