diff options
Diffstat (limited to 'crates/test_utils/src/marks.rs')
-rw-r--r-- | crates/test_utils/src/marks.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/test_utils/src/marks.rs b/crates/test_utils/src/marks.rs index 79ffedf69..ee47b5219 100644 --- a/crates/test_utils/src/marks.rs +++ b/crates/test_utils/src/marks.rs | |||
@@ -46,11 +46,13 @@ macro_rules! covers { | |||
46 | } | 46 | } |
47 | 47 | ||
48 | #[macro_export] | 48 | #[macro_export] |
49 | macro_rules! mark { | 49 | macro_rules! marks { |
50 | ($ident:ident) => { | 50 | ($($ident:ident)*) => { |
51 | $( | ||
51 | #[allow(bad_style)] | 52 | #[allow(bad_style)] |
52 | pub(crate) static $ident: std::sync::atomic::AtomicUsize = | 53 | pub(crate) static $ident: std::sync::atomic::AtomicUsize = |
53 | std::sync::atomic::AtomicUsize::new(0); | 54 | std::sync::atomic::AtomicUsize::new(0); |
55 | )* | ||
54 | }; | 56 | }; |
55 | } | 57 | } |
56 | 58 | ||