aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-10-19 00:09:52 -0700
committerAndrew Kelley <andrew@ziglang.org>2024-10-23 16:27:38 -0700
commit3cc19cd86518f8ae2a7bd48577d30577cfbbd391 (patch)
treee862825f98356ab4262b1e5aed49816ae876bdce /test
parentd1ecb742ec5cb80e29178fddefe6663bed40daa8 (diff)
downloadzig-3cc19cd86518f8ae2a7bd48577d30577cfbbd391.tar.gz
zig-3cc19cd86518f8ae2a7bd48577d30577cfbbd391.zip
better error messages
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 fb0e0a7d1d..63359aa33b 100644
--- a/test/link/elf.zig
+++ b/test/link/elf.zig
@@ -3910,7 +3910,7 @@ fn testUnknownFileTypeError(b: *Build, opts: Options) *Step {
exe.linkLibC();
expectLinkErrors(exe, test_step, .{
- .contains = "error: failed to parse shared object: BadMagic",
+ .contains = "error: failed to parse shared library: BadMagic",
});
return test_step;