From 0de7668c013c5d3e095f0e436dba1b22a6a01f14 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 11 Feb 2026 23:49:09 -0800 Subject: [PATCH] test harness: refmt for readability --- test/src/Libc.zig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/src/Libc.zig b/test/src/Libc.zig index 423d7856d1..c6cea0d571 100644 --- a/test/src/Libc.zig +++ b/test/src/Libc.zig @@ -60,7 +60,9 @@ pub fn addTarget(libc: *const Libc, target: std.Build.ResolvedTarget) void { .link_libc = true, }); - var libtest_c_source_files: []const []const u8 = &.{ "print.c", "rand.c", "mtest.c", "setrlim.c", "memfill.c", "vmfill.c", "fdfill.c", "utf8.c" }; + var libtest_c_source_files: []const []const u8 = &.{ + "print.c", "rand.c", "mtest.c", "setrlim.c", "memfill.c", "vmfill.c", "fdfill.c", "utf8.c", + }; libtest_mod.addCSourceFiles(.{ .root = common, .files = libtest_c_source_files[0..if (target.result.isMuslLibC()) 8 else 3],