Skip to content

Instantly share code, notes, and snippets.

View bengarishodge's full-sized avatar
🌈
yes, you can pet my dog

Ben Garis-Hodge bengarishodge

🌈
yes, you can pet my dog
View GitHub Profile
@nurpax
nurpax / test_runner.zig
Last active July 21, 2025 06:54
zig test runner
// Modded from from https://gist.github.com/karlseguin/c6bea5b35e4e8d26af6f81c22cb5d76b
// in your build.zig, you can specify a custom test runner:
// const tests = b.addTest(.{
// .target = target,
// .optimize = optimize,
// .test_runner = .{ .path = b.path("test_runner.zig"), .mode = .simple }, // add this line
// .root_source_file = b.path("src/main.zig"),
// });
//