You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rust-pico-args/0001-Ignore-debug-related-t...

42 lines
925 B

From 73eb2098180c460e24eeb575efc545bdc8efcf84 Mon Sep 17 00:00:00 2001
From: Evgeniy Reizner <razrfalcon@gmail.com>
Date: Thu, 20 Feb 2020 03:18:57 +0200
Subject: [PATCH] Ignore debug related tests in release mode.
Closes #9
---
tests/tests.rs | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/tests.rs b/tests/tests.rs
index 3ce69640caf7..bc4004344d72 100644
--- a/tests/tests.rs
+++ b/tests/tests.rs
@@ -49,6 +49,7 @@ fn invalid_flag_01() {
assert!(args.contains("v"));
}
+#[cfg(debug_assertions)]
#[test]
#[should_panic]
fn invalid_flag_02() {
@@ -56,6 +57,7 @@ fn invalid_flag_02() {
assert!(args.contains(["v", "--version"]));
}
+#[cfg(debug_assertions)]
#[test]
#[should_panic]
fn invalid_flag_03() {
@@ -63,6 +65,7 @@ fn invalid_flag_03() {
assert!(args.contains(["-v", "-version"]));
}
+#[cfg(debug_assertions)]
#[test]
#[should_panic]
fn invalid_flag_04() {
--
2.24.1