| author | |
| committer | |
| log | d6345e1be7b622a3a04c7064065ab6765daa363f |
| tree | a52a213845ae4efad4c40a68eb3507dab69c056b |
| parent | d4f8a6437cb5068072e4df338af77dde15ad3625 |
2 files changed, 1 insertions(+), 7 deletions(-)
build.zig+1-1| ... | ... | @@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void { |
| 10 | 10 | }); |
| 11 | 11 | |
| 12 | 12 | const tests = b.addTest(.{ |
| 13 | .root_source_file = b.path("test.zig"), | |
| 13 | .root_source_file = b.path("src/lib.zig"), | |
| 14 | 14 | .target = target, |
| 15 | 15 | .optimize = mode, |
| 16 | 16 | }); |
test.zig deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | const std = @import("std"); | |
| 2 | const extras = @import("extras"); | |
| 3 | ||
| 4 | test { | |
| 5 | std.testing.refAllDeclsRecursive(extras); | |
| 6 | } |