authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-08-30 16:03:54+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-09-19 18:20:21-07:00
loga99c883cf0f5b4349ecf52c25f51f168c81de1ff
treea1615860b9afcb77ef1108a7b8bb3880530fcf0f
parent3acf997692ddb1cbaeb448cc4c5fd3dbdc25f6a6

test: Update `wasm/infer-features` based on what LLVM produces.


1 files changed, 8 insertions(+), 1 deletions(-)

test/link/wasm/infer-features/build.zig+8-1
......@@ -36,11 +36,18 @@ pub fn build(b: *std.Build) void {
3636 const check = lib.checkObject();
3737 check.checkInHeaders();
3838 check.checkExact("name target_features");
39 check.checkExact("features 7");
39 check.checkExact("features 14");
4040 check.checkExact("+ atomics");
4141 check.checkExact("+ bulk-memory");
42 check.checkExact("+ exception-handling");
43 check.checkExact("+ extended-const");
44 check.checkExact("+ half-precision");
45 check.checkExact("+ multimemory");
46 check.checkExact("+ multivalue");
4247 check.checkExact("+ mutable-globals");
4348 check.checkExact("+ nontrapping-fptoint");
49 check.checkExact("+ reference-types");
50 check.checkExact("+ relaxed-simd");
4451 check.checkExact("+ sign-ext");
4552 check.checkExact("+ simd128");
4653 check.checkExact("+ tail-call");