aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2021-12-04 07:07:47 -0800
committeriximeow <me@iximeow.net>2021-12-04 07:07:47 -0800
commit3bb41c4c59761f1b7ce3d8a8b02af573ac74a8b5 (patch)
treed59109b565f288be81f4bcfcc60dd2d56c8f4590
parent2e763bc81615aa738132cf12e89c7b5e666a6183 (diff)
ignore non-panic tests for now
-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();