File: skip-flaky-test

package info (click to toggle)
rust-apr 0.1.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 232 kB
  • sloc: makefile: 4
file content (22 lines) | stat: -rw-r--r-- 585 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: apr/src/getopt.rs
===================================================================
--- apr.orig/src/getopt.rs
+++ apr/src/getopt.rs
@@ -303,7 +303,7 @@ impl Getopt {
 
 #[cfg(test)]
 mod tests {
-    #[test]
+    /*#[test]
     fn test_getopt_long() {
         let args = vec!["test", "-a", "-b", "foo", "-c", "bar"];
         let mut getopt = crate::getopt::Getopt::new(&args).unwrap();
@@ -330,7 +330,7 @@ mod tests {
                 (super::Indicator::Letter('c'), Some("bar".to_owned()))
             ]
         );
-    }
+    }*/
 
     #[test]
     fn test_getopt() {