We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b895b7 commit 0bee96dCopy full SHA for 0bee96d
crossbeam-channel/tests/tick.rs
@@ -127,6 +127,7 @@ fn recv() {
127
assert_eq!(r.try_recv(), Err(TryRecvError::Empty));
128
}
129
130
+#[cfg(not(feature = "sanitize"))]
131
#[test]
132
fn recv_timeout() {
133
let start = Instant::now();
@@ -251,6 +252,7 @@ fn select() {
251
252
assert_eq!(hits.load(Ordering::SeqCst), 8);
253
254
255
256
257
fn ready() {
258
const THREADS: usize = 4;
crossbeam-epoch/src/collector.rs
@@ -199,6 +199,7 @@ mod tests {
199
.unwrap();
200
201
202
+ #[cfg(not(feature = "sanitize"))]
203
204
fn incremental() {
205
const COUNT: usize = 100_000;
0 commit comments