We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 123f489 commit c7bac27Copy full SHA for c7bac27
ci/script.sh
@@ -5,14 +5,18 @@ main() {
5
6
if [ $TARGET = x86_64-unknown-linux-gnu ]; then
7
cargo test --target $TARGET
8
+ cargo test --target $TARGET --all-features
9
cargo test --target $TARGET --release
10
+ cargo test --target $TARGET --release --all-features
11
12
export RUSTFLAGS="-Z sanitizer=thread"
13
export RUST_TEST_THREADS=1
14
export TSAN_OPTIONS="suppressions=$(pwd)/blacklist.txt"
15
16
cargo test --test tsan --target $TARGET
17
+ cargo test --test tsan --target $TARGET --all-features
18
cargo test --test tsan --target $TARGET --release
19
+ cargo test --test tsan --target $TARGET --release --all-features
20
fi
21
}
22
0 commit comments