diff options
author | iximeow <me@iximeow.net> | 2021-12-04 07:07:47 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-12-04 07:07:47 -0800 |
commit | 3bb41c4c59761f1b7ce3d8a8b02af573ac74a8b5 (patch) | |
tree | d59109b565f288be81f4bcfcc60dd2d56c8f4590 /test | |
parent | 2e763bc81615aa738132cf12e89c7b5e666a6183 (diff) |
ignore non-panic tests for now
Diffstat (limited to 'test')
-rw-r--r-- | test/test.rs | 3 |
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(); |