diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-12-28 21:28:26 +0100 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-12-28 21:28:26 +0100 |
| commit | 5685c94194d6658767bcad05e05cd3deb201cf88 (patch) | |
| tree | 5f887b66a119a7ea32ea891b6f283b3644241383 /test/tests.zig | |
| parent | 3a645ac9dbe77bd0a83ca6ae3266f16628924861 (diff) | |
tests revised
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test/tests.zig b/test/tests.zig index 795967a..36fabfa 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -8,10 +8,9 @@ const mem = std.mem; const Allocator = std.mem.Allocator; const Child = std.process.Child; const Build = std.Build; -const LazyPath = std.Build.LazyPath; -// const Reader = fs.File.Reader; -const RunStep = std.Build.RunStep; const Step = Build.Step; +const RunStep = Build.RunStep; +const LazyPath = Build.LazyPath; const Exercise = root.Exercise; @@ -162,8 +161,6 @@ const CheckNamedStep = struct { ); defer stderr_file.close(io); - // var threaded: std.Io.Threaded = .init_single_threaded; - // const io = threaded.io(); var stderr = stderr_file.readerStreaming(io, &.{}); { // Skip the logo. @@ -218,8 +215,6 @@ const CheckStep = struct { ); defer stderr_file.close(io); - // var threaded: std.Io.Threaded = .init_single_threaded; - // const io = threaded.io(); var stderr = stderr_file.readerStreaming(io, &.{}); for (exercises) |ex| { if (ex.number() == 1) { |
