diff options
author | Aleksey Kladov <[email protected]> | 2020-04-06 15:58:16 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-04-06 16:00:18 +0100 |
commit | bf569f8b29d05782597d40ec98ee33bc2574763e (patch) | |
tree | 68a7af10960f55c5d4c1d2b50fea6a8c9f28e1d3 /crates/stdx | |
parent | 2603a9e628d304c8cb8fd08979e2f9c9afeac69e (diff) |
Check for eprintln on CI
Diffstat (limited to 'crates/stdx')
-rw-r--r-- | crates/stdx/src/lib.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crates/stdx/src/lib.rs b/crates/stdx/src/lib.rs index d2efa2236..401a568bd 100644 --- a/crates/stdx/src/lib.rs +++ b/crates/stdx/src/lib.rs | |||
@@ -2,6 +2,21 @@ | |||
2 | 2 | ||
3 | use std::{cell::Cell, fmt}; | 3 | use std::{cell::Cell, fmt}; |
4 | 4 | ||
5 | #[inline(always)] | ||
6 | pub fn is_ci() -> bool { | ||
7 | option_env!("CI").is_some() | ||
8 | } | ||
9 | |||
10 | #[macro_export] | ||
11 | macro_rules! eprintln { | ||
12 | ($($tt:tt)*) => {{ | ||
13 | if $crate::is_ci() { | ||
14 | panic!("Forgot to remove debug-print?") | ||
15 | } | ||
16 | std::eprintln!($($tt)*) | ||
17 | }} | ||
18 | } | ||
19 | |||
5 | /// Appends formatted string to a `String`. | 20 | /// Appends formatted string to a `String`. |
6 | #[macro_export] | 21 | #[macro_export] |
7 | macro_rules! format_to { | 22 | macro_rules! format_to { |