cmdtest Posts
A collection of my posts on cmdtest. Whether I'm trying to
build something new or figure out how to break it, these notes, fixes,
and deep dives document my process. I hope you find them useful.
-
The Zig 0.16 release brought a complete I/O system redesign. Here is my experience migrating
cmdtest, including the new Child process API, file operations, and what I had to learn along the way. -
Working on
cmdtest, my Zig CLI testing tool, I ran into the problem of readingstdiofrom long-lived processes. This is my dive into why memory allocation is key for handling program output. -
I'm sharing my experience building
cmdtest, a Zig package for testing CLI apps. This post covers Zig I/O, comptime vs runtime, andbuild.zigimport quirks.