aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorJimmi HC <jhc@liab.dk>2018-07-18 10:28:14 +0200
committerJimmi HC <jhc@liab.dk>2018-07-18 10:28:14 +0200
commitb7be082bd9aaba4cbf7c7c7449e481f9caa1dc24 (patch)
treed49fad9537afcf6da8da00fce4d496df04f193ae /build.zig
parent843529d23415efcf3fe894c48b3d08c0925edc08 (diff)
downloadzig-b7be082bd9aaba4cbf7c7c7449e481f9caa1dc24.tar.gz
zig-b7be082bd9aaba4cbf7c7c7449e481f9caa1dc24.zip
-Dskip-release now also skips build example tests
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index c9e70887e3..e7a5c5cba1 100644
--- a/build.zig
+++ b/build.zig
@@ -92,7 +92,7 @@ pub fn build(b: *Builder) !void {
test_step.dependOn(tests.addPkgTests(b, test_filter, "std/special/compiler_rt/index.zig", "compiler-rt", "Run the compiler_rt tests", modes));
test_step.dependOn(tests.addCompareOutputTests(b, test_filter, modes));
- test_step.dependOn(tests.addBuildExampleTests(b, test_filter));
+ test_step.dependOn(tests.addBuildExampleTests(b, test_filter, modes));
test_step.dependOn(tests.addCompileErrorTests(b, test_filter, modes));
test_step.dependOn(tests.addAssembleAndLinkTests(b, test_filter, modes));
test_step.dependOn(tests.addRuntimeSafetyTests(b, test_filter, modes));