aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-09-07 15:15:48 -0700
committerAndrew Kelley <andrew@ziglang.org>2020-09-07 15:15:48 -0700
commitc15f39212e32c612cf51f647868be2bdd024d0de (patch)
tree2c42c754df853446322a0f47eeb4e892c45d1a9e /build.zig
parent2328f40b7a0b301ad176e2657694457667be862e (diff)
downloadzig-c15f39212e32c612cf51f647868be2bdd024d0de.tar.gz
zig-c15f39212e32c612cf51f647868be2bdd024d0de.zip
build.zig: ignore the compression test files
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 8ac2d4f8ba..3f7f1a9038 100644
--- a/build.zig
+++ b/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");