From eb0c959b43f0581177299de53990be1a65e75947 Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Fri, 20 Jan 2023 21:27:54 +0100 Subject: [PATCH] link-tests: update uuid test with new uuid values Changes only pertain arm64 as for x86_64 turns out we are missing one additional feature which is synthesising unwind info from only eh frame records, or at least this is what it looks like when I analysed the output of Apple's ld. --- test/link/macho/uuid/build.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/link/macho/uuid/build.zig b/test/link/macho/uuid/build.zig index fd7ad57e57..b17c14b973 100644 --- a/test/link/macho/uuid/build.zig +++ b/test/link/macho/uuid/build.zig @@ -12,9 +12,9 @@ pub fn build(b: *Builder) void { .os_tag = .macos, }; - testUuid(b, test_step, .ReleaseSafe, aarch64_macos, "af0f4c21a07c30daba59213d80262e45"); - testUuid(b, test_step, .ReleaseFast, aarch64_macos, "af0f4c21a07c30daba59213d80262e45"); - testUuid(b, test_step, .ReleaseSmall, aarch64_macos, "af0f4c21a07c30daba59213d80262e45"); + testUuid(b, test_step, .ReleaseSafe, aarch64_macos, "675bb6ba8e5d3d3191f7936d7168f0e9"); + testUuid(b, test_step, .ReleaseFast, aarch64_macos, "675bb6ba8e5d3d3191f7936d7168f0e9"); + testUuid(b, test_step, .ReleaseSmall, aarch64_macos, "675bb6ba8e5d3d3191f7936d7168f0e9"); const x86_64_macos = std.zig.CrossTarget{ .cpu_arch = .x86_64,