Commit c15f39212e
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");