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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -400,6 +400,7 @@
}
#[test]
+ #[ignore = "tries to access hardware"]
fn detecting_device_nvidia() {
clean_up();
setup_test_env(&["nvidia_0", "generic"]).unwrap();
@@ -410,6 +411,7 @@
}
#[test]
+ #[ignore = "tries to access hardware"]
fn detecting_device_amd() {
clean_up();
setup_test_env(&["nvidia_0", "generic", "amdgpu_x"]).unwrap();
@@ -420,6 +422,7 @@
}
#[test]
+ #[ignore = "tries to access hardware"]
fn detecting_device_acpi() {
clean_up();
setup_test_env(&["acpi_video0", "generic"]).unwrap();
@@ -430,6 +433,7 @@
}
#[test]
+ #[ignore = "tries to access hardware"]
fn detecting_device_fallback() {
clean_up();
setup_test_env(&["generic"]).unwrap();
@@ -440,6 +444,7 @@
}
#[test]
+ #[ignore = "tries to access hardware"]
fn writing_value() {
clean_up();
let name = "generic";
@@ -459,6 +464,7 @@
}
#[test]
+ #[ignore = "tries to access hardware"]
fn read_value() {
clean_up();
let name = "generic";
@@ -468,6 +474,7 @@
}
#[test]
+ #[ignore = "tries to access hardware"]
fn current_value() {
clean_up();
let name = "generic";
@@ -537,6 +544,7 @@
}
#[test]
+ #[ignore = "tries to access hardware"]
fn sweeping() {
clean_up();
setup_test_env(&["generic"]).unwrap();
@@ -551,6 +559,7 @@
}
#[test]
+ #[ignore = "tries to access hardware"]
fn sweep_bounds() {
clean_up();
setup_test_env(&["generic"]).unwrap();
|