From 5199401c536d0b0032c5908c55d5c0bb34b76d12 Mon Sep 17 00:00:00 2001 From: Sam Atman Date: Wed, 4 Feb 2026 15:31:50 -0500 Subject: Convert Words module to no-allocation --- build.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 0e3d5aa..1ae7005 100644 --- a/build.zig +++ b/build.zig @@ -64,7 +64,7 @@ pub fn build(b: *std.Build) void { }); wbp_gen_exe.root_module.addAnonymousImport("WordBreakProperty.txt", .{ .root_source_file = b.path("data/unicode/auxiliary/WordBreakProperty.txt") }); const run_wbp_gen_exe = b.addRunArtifact(wbp_gen_exe); - const wbp_gen_out = run_wbp_gen_exe.addOutputFileArg("wbp.bin.z"); + const wbp_gen_out = run_wbp_gen_exe.addOutputFileArg("wbp.zig"); const dwp_gen_exe = b.addExecutable(.{ .name = "dwp", @@ -517,6 +517,7 @@ pub fn build(b: *std.Build) void { const test_unicode_step = b.step("unicode", "Rune unicode tests"); test_unicode_step.dependOn(&run_unicode_tests.step); test_unicode_step.dependOn(&display_width_tr.step); + test_unicode_step.dependOn(&words_tr.step); const test_step = b.step("test", "Run all module tests"); test_step.dependOn(&run_unicode_tests.step); -- cgit v1.2.3