From e2f9ca43ad9907c6d179e3af8825225d9a6aa392 Mon Sep 17 00:00:00 2001 From: zyfjeff Date: Tue, 7 Jun 2022 14:53:21 +0000 Subject: [PATCH] test: disable digest validate for v6 Signed-off-by: zyfjeff --- tests/smoke.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/smoke.rs b/tests/smoke.rs index b386ac4220a..5c67b516439 100644 --- a/tests/smoke.rs +++ b/tests/smoke.rs @@ -109,7 +109,7 @@ fn test( cache_compressed, rafs_mode.parse().unwrap(), "api.sock".into(), - true, + !rafsv6, ); nydusd.start(Some("bootstrap-overlay"), "mnt"); nydusd.check(&overlay_texture, "mnt"); @@ -124,7 +124,7 @@ fn test( cache_compressed, rafs_mode.parse().unwrap(), "api.sock".into(), - true, + !rafsv6, ); nydusd.start(Some("bootstrap-overlay"), "mnt"); nydusd.check(&overlay_texture, "mnt");