Skip to content

Commit 83960e0

Browse files
committed
disable -fno-llvm -target wasm32-wasi testing
no active maintainer, and it's failing to lower some basic stuff
1 parent d396780 commit 83960e0

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

test/src/Cases.zig

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

test/tests.zig

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

13361336
// WASI Targets
13371337

1338-
.{
1339-
.target = .{
1340-
.cpu_arch = .wasm32,
1341-
.os_tag = .wasi,
1342-
.abi = .none,
1343-
},
1344-
.use_llvm = false,
1345-
.use_lld = false,
1346-
},
1338+
// TODO: lowerTry for pointers
1339+
//.{
1340+
// .target = .{
1341+
// .cpu_arch = .wasm32,
1342+
// .os_tag = .wasi,
1343+
// .abi = .none,
1344+
// },
1345+
// .use_llvm = false,
1346+
// .use_lld = false,
1347+
//},
13471348
.{
13481349
.target = .{
13491350
.cpu_arch = .wasm32,

0 commit comments

Comments
 (0)