aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test.rs b/test/test.rs
index b333fc1..d22876d 100644
--- a/test/test.rs
+++ b/test/test.rs
@@ -11,6 +11,7 @@ mod armv8;
use yaxpeax_arch::{Arch, Decoder, Reader, U8Reader};
use std::fmt;
+#[ignore]
#[test]
fn test_armv7_does_not_panic() {
let armv7 = <yaxpeax_arm::armv7::ARMv7 as Arch>::Decoder::default();
@@ -23,6 +24,7 @@ fn test_armv7_does_not_panic() {
}
}
}
+#[ignore]
#[test]
fn test_armv7_thumb_does_not_panic() {
let mut armv7_t = <yaxpeax_arm::armv7::ARMv7 as Arch>::Decoder::default();
@@ -36,6 +38,7 @@ fn test_armv7_thumb_does_not_panic() {
}
}
}
+#[ignore]
#[test]
fn test_armv8_does_not_panic() {
let armv8 = <yaxpeax_arm::armv8::a64::ARMv8 as Arch>::Decoder::default();