From 318abaad02060a68070aa03fe86f04a7a52c51db Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Wed, 1 Apr 2020 12:24:09 +0200 Subject: [PATCH] io: test all files under std/io --- lib/std/io.zig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/std/io.zig b/lib/std/io.zig index 69cc4a923a..b498f2a299 100644 --- a/lib/std/io.zig +++ b/lib/std/io.zig @@ -141,6 +141,20 @@ test "null_out_stream" { } test "" { + _ = @import("io/bit_in_stream.zig"); + _ = @import("io/bit_out_stream.zig"); + _ = @import("io/buffered_atomic_file.zig"); + _ = @import("io/buffered_in_stream.zig"); + _ = @import("io/buffered_out_stream.zig"); + _ = @import("io/c_out_stream.zig"); + _ = @import("io/counting_out_stream.zig"); + _ = @import("io/fixed_buffer_stream.zig"); + _ = @import("io/in_stream.zig"); + _ = @import("io/out_stream.zig"); + _ = @import("io/peek_stream.zig"); + _ = @import("io/seekable_stream.zig"); + _ = @import("io/serialization.zig"); + _ = @import("io/stream_source.zig"); _ = @import("io/test.zig"); }