File: disable-circular-tests.patch

package info (click to toggle)
rust-zbus-macros 5.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 300 kB
  • sloc: makefile: 2
file content (49 lines) | stat: -rw-r--r-- 1,144 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Description: Disable tests that use zbus
 which are basically all. Annoying, but necessary, since zbus depends on
 zvariant, a newer, incompatible version of which this depends on.
Last-Update: 2024-07-04
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/tests/tests.rs
+++ b/tests/tests.rs
@@ -1,4 +1,4 @@
-use futures_util::{
+/*use futures_util::{
     future::{select, Either},
     stream::StreamExt,
 };
@@ -387,4 +3387,4 @@
             .args()
             .expect_err("Message does not have correct data");
     }
-}
+}*/
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -109,7 +109,7 @@
 ///
 /// # Example
 ///
-/// ```no_run
+/// ```ignore
 /// # use std::error::Error;
 /// use zbus_macros::proxy;
 /// use zbus::{blocking::Connection, Result, fdo, zvariant::Value};
@@ -307,7 +307,7 @@
 ///
 /// # Example
 ///
-/// ```
+/// ```ignore
 /// # use std::error::Error;
 /// use zbus_macros::interface;
 /// use zbus::{ObjectServer, object_server::SignalEmitter, message::Header};
@@ -397,7 +397,7 @@
 ///
 /// # Example
 ///
-/// ```
+/// ```ignore
 /// use zbus_macros::DBusError;
 ///
 /// #[derive(DBusError, Debug)]