Skip to content

Instantly share code, notes, and snippets.

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

Ben Hodge bahodge

🌈
yes, you can pet my dog
View GitHub Profile
@nurpax
nurpax / test_runner.zig
Last active May 12, 2025 14:27
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"),
// });