diff options
| author | LemonBoy <thatlemon@gmail.com> | 2020-09-11 21:04:08 +0200 |
|---|---|---|
| committer | LemonBoy <thatlemon@gmail.com> | 2020-09-11 21:04:08 +0200 |
| commit | 4b851c7255d726f5743c42ae80a71ce7cf47c486 (patch) | |
| tree | d4f64d8d3d71f316a352247a960b16ecc93f198d /lib/std | |
| parent | 41f244bd2ff0a217a83a3d17fc82f4a773eca278 (diff) | |
| download | zig-4b851c7255d726f5743c42ae80a71ce7cf47c486.tar.gz zig-4b851c7255d726f5743c42ae80a71ce7cf47c486.zip | |
Re-enable a compression test
It somehow got commented out...
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/compress/zlib.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/std/compress/zlib.zig b/lib/std/compress/zlib.zig index acda7eadeb..d4bac4a8a4 100644 --- a/lib/std/compress/zlib.zig +++ b/lib/std/compress/zlib.zig @@ -138,10 +138,10 @@ test "compressed data" { "5ebf4b5b7fe1c3a0c0ab9aa3ac8c0f3853a7dc484905e76e03b0b0f301350009", ); // Compressed with compression level = 9 and fixed Huffman codes - // try testReader( - // @embedFile("rfc1951.txt.fixed.z.9"), - // "5ebf4b5b7fe1c3a0c0ab9aa3ac8c0f3853a7dc484905e76e03b0b0f301350009", - // ); + try testReader( + @embedFile("rfc1951.txt.fixed.z.9"), + "5ebf4b5b7fe1c3a0c0ab9aa3ac8c0f3853a7dc484905e76e03b0b0f301350009", + ); } test "sanity checks" { |
