diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-03-11 10:29:57 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-03-11 10:35:39 -0400 |
| commit | 6a5c2b249d64952f3fc91b554e484d27ceb3d1a9 (patch) | |
| tree | 97cdde8b7c858210cde8394c8427c880f4064958 /test/tests.zig | |
| parent | 895fab156a83e7a71487388dfa22743aa54c4b7e (diff) | |
| download | zig-6a5c2b249d64952f3fc91b554e484d27ceb3d1a9.tar.gz zig-6a5c2b249d64952f3fc91b554e484d27ceb3d1a9.zip | |
Revert "use unique test source names for test-gen-h"
This reverts commit 264b03d57027da4b7c6e691d9b2a4340cd10fff0.
This workaround is no longer necessary.
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/test/tests.zig b/test/tests.zig index ad7e5d3652..ba713902ba 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -158,7 +158,6 @@ pub fn addGenHTests(b: *build.Builder, test_filter: ?[]const u8) *build.Step { .step = b.step("test-gen-h", "Run the C header file generation tests"), .test_index = 0, .test_filter = test_filter, - .counter = 0, }; gen_h.addCases(cases); @@ -1105,7 +1104,6 @@ pub const GenHContext = struct { step: *build.Step, test_index: usize, test_filter: ?[]const u8, - counter: usize, const TestCase = struct { name: []const u8, @@ -1208,11 +1206,7 @@ pub const GenHContext = struct { } pub fn add(self: *GenHContext, name: []const u8, source: []const u8, expected_lines: ...) void { - // MacOS appears to not be returning nanoseconds in fstat mtime, - // which causes fast test executions to think the file contents are unchanged. - const modified_name = self.b.fmt("test-{}.zig", self.counter); - self.counter += 1; - const tc = self.create(modified_name, name, source, expected_lines); + const tc = self.create("test.zig", name, source, expected_lines); self.addCase(tc); } |
