authorgravatar for igor.anic@gmail.comIgor Anić <igor.anic@gmail.com> 2024-02-27 20:10:16+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-02-27 19:19:59-08:00
log62ce753814cf6e2f78773c85bf4bad2ba1a3fc0b
treedd7a10e414e5aec972bfa977ad7df043588ee4e8
parentae7f3fc360ce2f72611b5ef6abc6f21d31f82870

compress: activate tests in wasm32

They were disabled because insufficient stack size. That is [changed](https://github.com/ziglang/zig/commit/d51aa9748f9e4e3616328a207a8047ff37d81f8b) now.

1 files changed, 0 insertions(+), 4 deletions(-)

lib/std/compress/flate.zig-4
......@@ -85,8 +85,6 @@ test {
8585}
8686
8787test "compress/decompress" {
88 if (builtin.target.cpu.arch == .wasm32) return error.SkipZigTest;
89
9088 var cmp_buf: [64 * 1024]u8 = undefined; // compressed data buffer
9189 var dcm_buf: [64 * 1024]u8 = undefined; // decompressed data buffer
9290
......@@ -354,8 +352,6 @@ test "gzip header" {
354352}
355353
356354test "public interface" {
357 if (builtin.target.cpu.arch == .wasm32) return error.SkipZigTest;
358
359355 const plain_data = [_]u8{ 'H', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', 0x0a };
360356
361357 // deflate final stored block, header + plain (stored) data