Skip to content
This repository was archived by the owner on Nov 6, 2024. It is now read-only.

Commit e562f49

Browse files
Sergii Glushchenkolauralt
authored andcommitted
Fix warnings and adjust test coverage
Signed-off-by: Sergii Glushchenko <gsserge@amazon.com>
1 parent a40c412 commit e562f49

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

coverage_config_x86_64.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"coverage_score": 67.5,
2+
"coverage_score": 68.3,
33
"exclude_path": "",
44
"crate_features": "fam-wrappers"
55
}

src/arm64/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// SPDX-License-Identifier: Apache-2.0
33

44
#[allow(clippy::all)]
5+
// Keep this until https://github.com/rust-lang/rust-bindgen/issues/1651 is fixed.
6+
#[cfg_attr(test, allow(deref_nullptr))]
57
pub mod bindings;
68
#[cfg(feature = "fam-wrappers")]
79
pub mod fam_wrappers;

src/x86/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// SPDX-License-Identifier: Apache-2.0
33

44
#[allow(clippy::all)]
5+
// Keep this until https://github.com/rust-lang/rust-bindgen/issues/1651 is fixed.
6+
#[cfg_attr(test, allow(deref_nullptr))]
57
pub mod bindings;
68
#[cfg(feature = "fam-wrappers")]
79
pub mod fam_wrappers;

0 commit comments

Comments
 (0)