Commit c15f39212e

Andrew Kelley <andrew@ziglang.org>
2020-09-08 00:15:48
build.zig: ignore the compression test files
1 parent 2328f40
Changed files (1)
build.zig
@@ -123,7 +123,13 @@ pub fn build(b: *Builder) !void {
         .source_dir = "lib",
         .install_dir = .Lib,
         .install_subdir = "zig",
-        .exclude_extensions = &[_][]const u8{ "test.zig", "README.md" },
+        .exclude_extensions = &[_][]const u8{
+            "test.zig",
+            "README.md",
+            ".z.0",
+            ".z.9",
+            "rfc1951.txt",
+        },
     });
 
     const test_filter = b.option([]const u8, "test-filter", "Skip tests that do not match filter");