Skip to content

Commit

Permalink
Disable false-positive clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tamird committed Mar 24, 2024
1 parent 0a32dac commit b552c83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/integration-test/src/tests/btf_relocations.rs
@@ -1,6 +1,8 @@
use aya::{maps::Array, programs::UProbe, util::KernelVersion, Btf, EbpfLoader, Endianness};
use test_case::test_case;

// False positive, see: https://github.com/rust-lang/rust-clippy/issues/12537.
#[allow(clippy::duplicated_attributes)]
#[test_case("enum_signed_32", false, Some((KernelVersion::new(6, 0, 0), "https://github.com/torvalds/linux/commit/6089fb3")), -0x7AAAAAAAi32 as u64)]
#[test_case("enum_signed_32", true, Some((KernelVersion::new(6, 0, 0), "https://github.com/torvalds/linux/commit/6089fb3")), -0x7BBBBBBBi32 as u64)]
#[test_case("enum_signed_32_checked_variants", false, Some((KernelVersion::new(6, 0, 0), "https://github.com/torvalds/linux/commit/6089fb3")), -0x7AAAAAAAi32 as u64)]
Expand Down

0 comments on commit b552c83

Please sign in to comment.