From 3bb41c4c59761f1b7ce3d8a8b02af573ac74a8b5 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 4 Dec 2021 07:07:47 -0800 Subject: ignore non-panic tests for now --- test/test.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test') 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 = ::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 = ::Decoder::default(); @@ -36,6 +38,7 @@ fn test_armv7_thumb_does_not_panic() { } } } +#[ignore] #[test] fn test_armv8_does_not_panic() { let armv8 = ::Decoder::default(); -- cgit v1.1