aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-04-19 14:00:12 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-04-19 14:00:12 -0400
commitd1e01e43d3b2078bfb07defb693d819e99eaa6c5 (patch)
treeee5a96ae18383a89b62533c9aada1d867a485959 /build.zig
parent666435195fff867417f92e1b4f8ef7e0608470ee (diff)
downloadzig-d1e01e43d3b2078bfb07defb693d819e99eaa6c5.tar.gz
zig-d1e01e43d3b2078bfb07defb693d819e99eaa6c5.zip
convert assemble and link tests to zig build system
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/build.zig b/build.zig
index b0338800b5..5b82a4f9c5 100644
--- a/build.zig
+++ b/build.zig
@@ -38,4 +38,5 @@ pub fn build(b: &Builder) {
test_step.dependOn(tests.addCompareOutputTests(b, test_filter));
test_step.dependOn(tests.addBuildExampleTests(b, test_filter));
test_step.dependOn(tests.addCompileErrorTests(b, test_filter));
+ test_step.dependOn(tests.addAssembleAndLinkTests(b, test_filter));
}