2017-04-19 05:13:15 +00:00
|
|
|
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");
|
|
|
|
|
|
|
|
const run_tests_exe = b.addExecutable("run_tests", "test/run_tests.zig");
|
|
|
|
|
|
|
|
const run_tests_cmd = b.addCommand(b.out_dir, b.env_map, "./run_tests", [][]const u8{});
|
|
|
|
run_tests_cmd.step.dependOn(&run_tests_exe.step);
|
|
|
|
|
|
|
|
const self_hosted_tests = b.step("test-self-hosted", "Run the self-hosted tests");
|
2017-04-19 05:45:46 +00:00
|
|
|
for ([]bool{false, true}) |release| {
|
|
|
|
for ([]bool{false, true}) |link_libc| {
|
|
|
|
const these_tests = b.addTest("test/self_hosted.zig");
|
|
|
|
// TODO add prefix to test names
|
|
|
|
// TODO pass test_filter to these_tests
|
|
|
|
these_tests.setRelease(release);
|
|
|
|
if (link_libc) {
|
|
|
|
these_tests.linkLibrary("c");
|
|
|
|
}
|
|
|
|
self_hosted_tests.dependOn(&these_tests.step);
|
|
|
|
}
|
|
|
|
}
|
2017-04-19 05:13:15 +00:00
|
|
|
|
|
|
|
test_step.dependOn(self_hosted_tests);
|
|
|
|
//test_step.dependOn(&run_tests_cmd.step);
|
|
|
|
|
|
|
|
test_step.dependOn(tests.addCompareOutputTests(b, test_filter));
|
2017-04-19 05:45:46 +00:00
|
|
|
test_step.dependOn(tests.addBuildExampleTests(b, test_filter));
|
2017-04-19 05:13:15 +00:00
|
|
|
}
|