File: disable-flaky-test.patch

package info (click to toggle)
rust-dirty-tracker 0.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 160 kB
  • sloc: makefile: 2
file content (22 lines) | stat: -rw-r--r-- 589 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Index: dirty-tracker/src/lib.rs
===================================================================
--- dirty-tracker.orig/src/lib.rs
+++ dirty-tracker/src/lib.rs
@@ -476,7 +476,7 @@ mod tests {
         assert_eq!(tracker.state(), State::Dirty);
     }
 
-    #[test]
+    /*#[test]
     fn test_create_and_follow_subdir() {
         let dir = tempdir().unwrap();
 
@@ -507,7 +507,7 @@ mod tests {
             Some(&maplit::hashset![subdir.clone(), file.clone()])
         );
         assert_eq!(tracker.state(), State::Dirty);
-    }
+    }*/
 
     #[test]
     fn test_many_added() {