diff options
Diffstat (limited to 'lib/std/io/stream_source.zig')
| -rw-r--r-- | lib/std/io/stream_source.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/io/stream_source.zig b/lib/std/io/stream_source.zig index ce5256028c..2345a97855 100644 --- a/lib/std/io/stream_source.zig +++ b/lib/std/io/stream_source.zig @@ -114,6 +114,7 @@ test "StreamSource (mutable buffer)" { } test "StreamSource (const buffer)" { + if (@import("builtin").zig_backend != .stage1) return error.SkipZigTest; const buffer: [64]u8 = "Hello, World!".* ++ ([1]u8{0xAA} ** 51); var source = StreamSource{ .const_buffer = std.io.fixedBufferStream(&buffer) }; |
