File: skip-flaky-tests.diff

package info (click to toggle)
rust-arboard 3.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 368 kB
  • sloc: sh: 6; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 564 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -275,7 +275,8 @@
 	use std::{sync::Arc, thread, time::Duration};
 
 	#[test]
-	fn all_tests() {
+	#[ignore = "broken"]
+    fn all_tests() {
 		let _ = env_logger::builder().is_test(true).try_init();
 		{
 			let mut ctx = Clipboard::new().unwrap();
@@ -473,6 +474,7 @@
 	// The cross-platform abstraction should allow any number of clipboards
 	// to be open at once without issue, as documented under [Clipboard].
 	#[test]
+    #[ignore = "broken"]
 	fn multiple_clipboards_at_once() {
 		const THREAD_COUNT: usize = 100;