From 551008ac19d262dd30ddaa0c8f39776b419682d8 Mon Sep 17 00:00:00 2001 From: itsnoctural Date: Fri, 9 Jan 2026 00:19:24 +0200 Subject: fix: use new randomness api --- test/tests.zig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/tests.zig b/test/tests.zig index 94cf6aa..509cb54 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -394,7 +394,11 @@ fn heal(allocator: Allocator, exercises: []const Exercise, work_path: []const u8 fn createTempPath(b: *Build) ![]const u8 { const io = b.graph.io; - const rand_int = std.crypto.random.int(u64); + const rand_int = r: { + var x: u64 = undefined; + io.random(@ptrCast(&x)); + break :r x; + }; const tmp_dir_sub_path = "tmp" ++ std.Io.Dir.path.sep_str ++ std.fmt.hex(rand_int); const result_path = b.cache_root.join(b.allocator, &.{tmp_dir_sub_path}) catch @panic("OOM"); try b.cache_root.handle.createDirPath(io, tmp_dir_sub_path); -- cgit v1.2.3