From 145df4b6897647930d23a2068b0de99358f0d23d Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Wed, 16 Nov 2022 23:22:35 +0000 Subject: [PATCH] tests: allow undocumented unsafe blocks in integration test Signed-off-by: Wei Liu --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 809130aa6..4e2dfa216 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: Apache-2.0 // - +#![allow(clippy::undocumented_unsafe_blocks)] // When enabling the `mshv` feature, we skip quite some tests and // hence have known dead-code. This annotation silences dead-code // related warnings for our quality workflow to pass.