aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-08-25 14:49:53 -0700
committerGitHub <noreply@github.com>2024-08-25 14:49:53 -0700
commit849c31a6cc3d1e554f97c2ccf7aaa886070cfadd (patch)
treec71047e77eac9215fcef554c9f583ad2a8bd2542 /test
parent7d54c62c8a55240bbe144ab03c78573a344598ce (diff)
parentfb6f5a30b2d6334d0f1415446849d39fe00d3af0 (diff)
downloadzig-849c31a6cc3d1e554f97c2ccf7aaa886070cfadd.tar.gz
zig-849c31a6cc3d1e554f97c2ccf7aaa886070cfadd.zip
Merge pull request #21177 from alexrp/elf-coff-conv
`std.{coff,elf}`: Remove the `{MachineType,EM}.toTargetCpuArch()` functions.
Diffstat (limited to 'test')
-rw-r--r--test/link/elf.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/link/elf.zig b/test/link/elf.zig
index 98253811b2..6abf596ab7 100644
--- a/test/link/elf.zig
+++ b/test/link/elf.zig
@@ -2257,7 +2257,7 @@ fn testMismatchedCpuArchitectureError(b: *Build, opts: Options) *Step {
exe.linkLibC();
expectLinkErrors(exe, test_step, .{ .exact = &.{
- "invalid cpu architecture: aarch64",
+ "invalid ELF machine type: AARCH64",
"note: while parsing /?/a.o",
} });