mirror of
https://github.com/ziglang/zig.git
synced 2024-11-29 16:42:31 +00:00
24 lines
1.1 KiB
Zig
24 lines
1.1 KiB
Zig
const Builder = @import("std").build.Builder;
|
|
const tests = @import("test/tests.zig");
|
|
|
|
pub fn build(b: &Builder) {
|
|
const test_filter = b.option([]const u8, "test-filter", "Skip tests that do not match filter");
|
|
const test_step = b.step("test", "Run all the tests");
|
|
|
|
test_step.dependOn(tests.addPkgTests(b, test_filter,
|
|
"test/behavior.zig", "behavior", "Run the behavior tests"));
|
|
|
|
test_step.dependOn(tests.addPkgTests(b, test_filter,
|
|
"std/index.zig", "std", "Run the standard library tests"));
|
|
|
|
test_step.dependOn(tests.addPkgTestsAlwaysLibc(b, test_filter,
|
|
"std/special/compiler_rt/index.zig", "compiler-rt", "Run the compiler_rt tests"));
|
|
|
|
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));
|
|
test_step.dependOn(tests.addDebugSafetyTests(b, test_filter));
|
|
test_step.dependOn(tests.addParseHTests(b, test_filter));
|
|
}
|