Skip to content

Commit

Permalink
test: Update wasm/infer-features based on what LLVM produces.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Aug 30, 2024
1 parent e632e71 commit aeaefba
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/link/wasm/infer-features/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,18 @@ pub fn build(b: *std.Build) void {
const check = lib.checkObject();
check.checkInHeaders();
check.checkExact("name target_features");
check.checkExact("features 7");
check.checkExact("features 14");
check.checkExact("+ atomics");
check.checkExact("+ bulk-memory");
check.checkExact("+ exception-handling");
check.checkExact("+ extended-const");
check.checkExact("+ half-precision");
check.checkExact("+ multimemory");
check.checkExact("+ multivalue");
check.checkExact("+ mutable-globals");
check.checkExact("+ nontrapping-fptoint");
check.checkExact("+ reference-types");
check.checkExact("+ relaxed-simd");
check.checkExact("+ sign-ext");
check.checkExact("+ simd128");
check.checkExact("+ tail-call");
Expand Down

0 comments on commit aeaefba

Please sign in to comment.