zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 4ae8717fb301008c64a5f7fad9db92f1d59a31d0 (tree)
parent cbe6872518bd67f05f87172367b22ad763241b21
Author: r00ster91 <r00ster91@proton.me>
Date:   Thu, 13 Oct 2022 14:46:48 +0200

test: uncomment print

For general output testing, this shouldn't always be required and is only sometimes useful.

Diffstat:
Mlib/std/Progress.zig | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/std/Progress.zig b/lib/std/Progress.zig @@ -442,8 +442,8 @@ test "behavior on buffer overflow" { if (skip_tests) return error.SkipZigTest; - // move the cursor - std.debug.print("{s}", .{"A" ** 300}); + // uncomment this to move the cursor + //std.debug.print("{s}", .{"A" ** 300}); var progress = Progress{};