zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit a99c883cf0f5b4349ecf52c25f51f168c81de1ff (tree)
parent 3acf997692ddb1cbaeb448cc4c5fd3dbdc25f6a6
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Fri, 30 Aug 2024 16:03:54 +0200

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

Diffstat:
Mtest/link/wasm/infer-features/build.zig | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/test/link/wasm/infer-features/build.zig b/test/link/wasm/infer-features/build.zig @@ -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");