Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion zigux/tests/phase1_rbtree_duplicate_bench_replay_build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ pub fn build(b: *std.Build) void {
});

const run_tests = b.addRunArtifact(tests);
const test_step = b.step(
const bench_replay_step = b.step(
"phase1-rbtree-duplicate-bench-replay",
"Run the focused Phase 1 rbtree duplicate-range replay",
);
bench_replay_step.dependOn(&run_tests.step);

const test_step = b.step("test", "Run the focused Phase 1 rbtree duplicate-range replay");
test_step.dependOn(&run_tests.step);
}
Loading