Kendall Condon

Results 5 issues of Kendall Condon

The latest htop version has capped the Disk IO meter at 100%, which is quite annoying as there is currently no per-disk utilization meter (#952) and doesn't seem like there...

enhancement
needs-discussion :thinking:

Fixes #12569 Adds support for main functions with signatures ```zig pub fn main() c_int pub fn main(argc: c_int, argv: [*:null]?[*:0]c_char) c_int pub fn main(argc: c_int, argv: [*:null]?[*:0]c_char, envp: [*:null]?[*:0]c_char) c_int...

### Zig Version 0.14.0-dev.208+854e86c56 ### Steps to Reproduce and Observed Behavior Run ``` mkdir abc touch test.zig zig test test.zig --zig-lib-dir abc ``` Result ``` [1] 184048 segmentation fault (core...

bug
frontend
regression

This fuzz test checks several properties of zig fmt are upheld, namely idempotency, textual equivilence, and no trailing whitespace. All functions in the fuzz test have @disableInstrumentation for performance and...

Reworks fuzz testing to be smith-based. Closes #25281 Closes #20816 ## On the standard library side: The `input: []const u8` parameter of functions passed to `testing.fuzz` has changed to `smith:...