Use cfg(test) for test macros
This commit is contained in:
parent
ebb7349ee3
commit
d519bc1388
@ -20,7 +20,7 @@ macro_rules! impl_crud_for_store {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused_macros)]
|
#[cfg(test)]
|
||||||
macro_rules! test_crud_for_store {
|
macro_rules! test_crud_for_store {
|
||||||
($store: ident, $db_column: expr) => {
|
($store: ident, $db_column: expr) => {
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -21,6 +21,7 @@ macro_rules! impl_from_into_u64 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// need to truncate for some fork-choice algorithms
|
// need to truncate for some fork-choice algorithms
|
||||||
|
#[allow(unused_macros)]
|
||||||
macro_rules! impl_into_u32 {
|
macro_rules! impl_into_u32 {
|
||||||
($main: ident) => {
|
($main: ident) => {
|
||||||
impl Into<u32> for $main {
|
impl Into<u32> for $main {
|
||||||
@ -267,7 +268,7 @@ macro_rules! impl_common {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// test macros
|
// test macros
|
||||||
#[allow(unused_macros)]
|
#[cfg(test)]
|
||||||
macro_rules! new_tests {
|
macro_rules! new_tests {
|
||||||
($type: ident) => {
|
($type: ident) => {
|
||||||
#[test]
|
#[test]
|
||||||
@ -279,7 +280,7 @@ macro_rules! new_tests {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused_macros)]
|
#[cfg(test)]
|
||||||
macro_rules! from_into_tests {
|
macro_rules! from_into_tests {
|
||||||
($type: ident, $other: ident) => {
|
($type: ident, $other: ident) => {
|
||||||
#[test]
|
#[test]
|
||||||
@ -305,7 +306,7 @@ macro_rules! from_into_tests {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused_macros)]
|
#[cfg(test)]
|
||||||
macro_rules! math_between_tests {
|
macro_rules! math_between_tests {
|
||||||
($type: ident, $other: ident) => {
|
($type: ident, $other: ident) => {
|
||||||
#[test]
|
#[test]
|
||||||
@ -453,7 +454,7 @@ macro_rules! math_between_tests {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused_macros)]
|
#[cfg(test)]
|
||||||
macro_rules! math_tests {
|
macro_rules! math_tests {
|
||||||
($type: ident) => {
|
($type: ident) => {
|
||||||
#[test]
|
#[test]
|
||||||
@ -575,7 +576,7 @@ macro_rules! ssz_tests {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused_macros)]
|
#[cfg(test)]
|
||||||
macro_rules! all_tests {
|
macro_rules! all_tests {
|
||||||
($type: ident) => {
|
($type: ident) => {
|
||||||
new_tests!($type);
|
new_tests!($type);
|
||||||
|
Loading…
Reference in New Issue
Block a user