authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-04-19 04:28:59-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-04-19 04:28:59-04:00
log35d60eb4e65c38a3c81e3a249de7447017616d02
tree59dea0dbfc01612b2c4f567d096f3952e72d6464
parentd0a17b6937cd0128f4a4fc37ec0f2bd99266034e

remove unused test code


2 files changed, 0 insertions(+), 12 deletions(-)

build.zig-7
......@@ -5,11 +5,6 @@ pub fn build(b: &Builder) {
55 const test_filter = b.option([]const u8, "test-filter", "Skip tests that do not match filter");
66 const test_step = b.step("test", "Run all the tests");
77
8 const run_tests_exe = b.addExecutable("run_tests", "test/run_tests.zig");
9
10 const run_tests_cmd = b.addCommand(b.out_dir, b.env_map, "./run_tests", [][]const u8{});
11 run_tests_cmd.step.dependOn(&run_tests_exe.step);
12
138 const self_hosted_tests = b.step("test-self-hosted", "Run the self-hosted tests");
149 test_step.dependOn(self_hosted_tests);
1510 for ([]bool{false, true}) |release| {
......@@ -40,8 +35,6 @@ pub fn build(b: &Builder) {
4035 }
4136 }
4237
43 //test_step.dependOn(&run_tests_cmd.step);
44
4538 test_step.dependOn(tests.addCompareOutputTests(b, test_filter));
4639 test_step.dependOn(tests.addBuildExampleTests(b, test_filter));
4740 test_step.dependOn(tests.addCompileErrorTests(b, test_filter));
test/run_tests.zig deleted-5
......@@ -1,5 +0,0 @@
1const io = @import("std").io;
2
3pub fn main() -> %void {
4 %%io.stderr.printf("TODO run tests\n");
5}