diff options
| author | 2025-05-12 15:22:37 -0400 | |
|---|---|---|
| committer | 2025-05-15 15:31:16 -0400 | |
| commit | cf8d8fe5d640511f6c4134fdaa36e930232ca7da (patch) | |
| tree | 410a3c5195ea0780b637f740ebcb6e80e63db09c /build.zig | |
| parent | Implement Word iterator (diff) | |
| download | zg-cf8d8fe5d640511f6c4134fdaa36e930232ca7da.tar.gz zg-cf8d8fe5d640511f6c4134fdaa36e930232ca7da.tar.xz zg-cf8d8fe5d640511f6c4134fdaa36e930232ca7da.zip | |
Begin conformance test
I'm not sure the details of this strategy can actually be made to work.
But, something can.
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -471,6 +471,7 @@ pub fn build(b: *std.Build) void { | |||
| 471 | }); | 471 | }); |
| 472 | unicode_tests.root_module.addImport("Graphemes", graphemes); | 472 | unicode_tests.root_module.addImport("Graphemes", graphemes); |
| 473 | unicode_tests.root_module.addImport("Normalize", norm); | 473 | unicode_tests.root_module.addImport("Normalize", norm); |
| 474 | unicode_tests.root_module.addImport("WordBreak", word_break); | ||
| 474 | 475 | ||
| 475 | const run_unicode_tests = b.addRunArtifact(unicode_tests); | 476 | const run_unicode_tests = b.addRunArtifact(unicode_tests); |
| 476 | 477 | ||