authorgravatar for vincent@rischmann.frVincent Rischmann <vincent@rischmann.fr> 2020-04-01 12:24:09+02:00
committergravatar for vincent@rischmann.frVincent Rischmann <vincent@rischmann.fr> 2020-04-01 12:24:09+02:00
log318abaad02060a68070aa03fe86f04a7a52c51db
tree7277dccd277ee2b8ba3188db896fdcd8a5c726ac
parenta5af78c376fc41424b81ea83766b38a0a1d17870
signaturelock-open Commit is signed but in an unrecognized format.

io: test all files under std/io


1 files changed, 14 insertions(+), 0 deletions(-)

lib/std/io.zig+14
......@@ -141,6 +141,20 @@ test "null_out_stream" {
141141}
142142
143143test "" {
144 _ = @import("io/bit_in_stream.zig");
145 _ = @import("io/bit_out_stream.zig");
146 _ = @import("io/buffered_atomic_file.zig");
147 _ = @import("io/buffered_in_stream.zig");
148 _ = @import("io/buffered_out_stream.zig");
149 _ = @import("io/c_out_stream.zig");
150 _ = @import("io/counting_out_stream.zig");
151 _ = @import("io/fixed_buffer_stream.zig");
152 _ = @import("io/in_stream.zig");
153 _ = @import("io/out_stream.zig");
154 _ = @import("io/peek_stream.zig");
155 _ = @import("io/seekable_stream.zig");
156 _ = @import("io/serialization.zig");
157 _ = @import("io/stream_source.zig");
144158 _ = @import("io/test.zig");
145159}
146160