From 74108bb9c0be84004d473f9fdf4cb669f071cfd7 Mon Sep 17 00:00:00 2001 From: Luuk de Gram Date: Mon, 19 Sep 2022 16:34:20 +0200 Subject: [PATCH] test/link: fix Wasm archive test As memcpy is now part of compiler-rt, we no longer expect any imports in the binary. --- test/link/wasm/archive/build.zig | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/link/wasm/archive/build.zig b/test/link/wasm/archive/build.zig index 0ee67102ac..5ac97c9cef 100644 --- a/test/link/wasm/archive/build.zig +++ b/test/link/wasm/archive/build.zig @@ -18,9 +18,6 @@ pub fn build(b: *Builder) void { lib.strip = false; const check = lib.checkObject(.wasm); - check.checkStart("Section import"); - check.checkNext("entries 1"); // __truncsfhf2 should have been resolved, so only 1 import (compiler-rt's memcpy). - check.checkStart("Section custom"); check.checkNext("name __truncsfhf2"); // Ensure it was imported and resolved