File: skip-flaky-test.patch

package info (click to toggle)
rust-crossbeam-channel 0.5.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,248 kB
  • sloc: makefile: 2
file content (22 lines) | stat: -rw-r--r-- 587 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Index: crossbeam-channel/tests/golang.rs
===================================================================
--- crossbeam-channel.orig/tests/golang.rs
+++ crossbeam-channel/tests/golang.rs
@@ -725,7 +725,7 @@ mod select {
 }
 
 // https://github.com/golang/go/blob/master/test/chan/select2.go
-mod select2 {
+/* mod select2 {
     use super::*;
 
     #[cfg(miri)]
@@ -770,7 +770,7 @@ mod select2 {
                 && (ALLOCATED.load(SeqCst) - alloc) > (N as usize + 10000))
         )
     }
-}
+} */
 
 // https://github.com/golang/go/blob/master/test/chan/select3.go
 mod select3 {