diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-06-07 20:07:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-07 20:07:28 -0400 |
| commit | 6ff7b437ff34e9a416a041c0c0ff8a65bae8daf5 (patch) | |
| tree | e8be8a2b2a1fa6524bead911f3607941d005d8ee /lib/std/io/stream_source.zig | |
| parent | 3cb387338234620e00645417565dc234dc5105c2 (diff) | |
| parent | 413577c881963559f7f357bfd90f4ade6d6de20d (diff) | |
| download | zig-6ff7b437ff34e9a416a041c0c0ff8a65bae8daf5.tar.gz zig-6ff7b437ff34e9a416a041c0c0ff8a65bae8daf5.zip | |
Merge pull request #11813 from Vexu/stage2
`zig2 build test-std` finale
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) }; |
