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

Commit

Permalink
Fix warnings and adjust test coverage
Browse files Browse the repository at this point in the history
Signed-off-by: Sergii Glushchenko <gsserge@amazon.com>
  • Loading branch information
Sergii Glushchenko authored and lauralt committed Feb 8, 2022
1 parent a40c412 commit e562f49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion coverage_config_x86_64.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"coverage_score": 67.5,
"coverage_score": 68.3,
"exclude_path": "",
"crate_features": "fam-wrappers"
}
2 changes: 2 additions & 0 deletions src/arm64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// SPDX-License-Identifier: Apache-2.0

#[allow(clippy::all)]
// Keep this until https://github.com/rust-lang/rust-bindgen/issues/1651 is fixed.
#[cfg_attr(test, allow(deref_nullptr))]
pub mod bindings;
#[cfg(feature = "fam-wrappers")]
pub mod fam_wrappers;
Expand Down
2 changes: 2 additions & 0 deletions src/x86/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// SPDX-License-Identifier: Apache-2.0

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

0 comments on commit e562f49

Please sign in to comment.