Compare commits

..

No commits in common. "c1388c731820d9847c9d54f698c55e07752bc5ea" and "d5e66caf2180324d83ad9be30e887849f5ed74da" have entirely different histories.

2 changed files with 5 additions and 8 deletions

View File

@ -27,21 +27,18 @@ pub fn build(b: *std.Build) void {
// This declares intent for the library to be installed into the standard
// location when the user invokes the "install" step (the default step when
// running `zig build`).
b.installArtifact(lib);
lib.install();
// Creates a step for unit testing. This only builds the test executable
// but does not run it.
// Creates a step for unit testing.
const main_tests = b.addTest(.{
.root_source_file = .{ .path = "src/lib.zig" },
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = optimize,
});
const run_main_tests = b.addRunArtifact(main_tests);
// This creates a build step. It will be visible in the `zig build --help` menu,
// and can be selected like this: `zig build test`
// This will evaluate the `test` step rather than the default, which is "install".
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&run_main_tests.step);
test_step.dependOn(&main_tests.step);
}

View File

@ -109,7 +109,7 @@ pub fn RingBuffer(comptime T: type) type {
std.debug.assert(std.math.isPowerOfTwo(buf.len)); // capacity must be a power of two
std.debug.assert(buf.len <= max_capacity);
@memset(buf, 0);
std.mem.set(T, buf, 0);
return .{ .read = 0, .write = 0, .buf = buf };
}