Skip to content

Commit 4328f71

Browse files
committed
Revert "disable -fno-llvm -target wasm32-wasi testing"
This reverts commit 83960e0.
1 parent fcd9f52 commit 4328f71

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

test/src/Cases.zig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,8 @@ const TestManifestConfigDefaults = struct {
800800
}
801801
// Windows
802802
defaults = defaults ++ "x86_64-windows" ++ ",";
803+
// Wasm
804+
defaults = defaults ++ "wasm32-wasi";
803805
break :blk defaults;
804806
};
805807
} else if (std.mem.eql(u8, key, "output_mode")) {

test/tests.zig

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1369,16 +1369,15 @@ const test_targets = blk: {
13691369

13701370
// WASI Targets
13711371

1372-
// TODO: lowerTry for pointers
1373-
//.{
1374-
// .target = .{
1375-
// .cpu_arch = .wasm32,
1376-
// .os_tag = .wasi,
1377-
// .abi = .none,
1378-
// },
1379-
// .use_llvm = false,
1380-
// .use_lld = false,
1381-
//},
1372+
.{
1373+
.target = .{
1374+
.cpu_arch = .wasm32,
1375+
.os_tag = .wasi,
1376+
.abi = .none,
1377+
},
1378+
.use_llvm = false,
1379+
.use_lld = false,
1380+
},
13821381
.{
13831382
.target = .{
13841383
.cpu_arch = .wasm32,

0 commit comments

Comments
 (0)