aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2023-10-10 12:17:11 +0200
committerAndrew Kelley <andrew@ziglang.org>2023-10-10 11:17:29 -0700
commit33ef01d16b91a537696272ca286d6423abbdd632 (patch)
treeeff1ab223553accceb08045bfee65070bb4e5a9e /test
parent8679c7a6070c3aa38bcf8e3fad47ac041cb93c90 (diff)
downloadzig-33ef01d16b91a537696272ca286d6423abbdd632.tar.gz
zig-33ef01d16b91a537696272ca286d6423abbdd632.zip
macho: test for presence of _abc as export in 16308 test
Diffstat (limited to 'test')
-rw-r--r--test/link/macho/bugs/16308/build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/link/macho/bugs/16308/build.zig b/test/link/macho/bugs/16308/build.zig
index a6329074a0..3d7a884bd0 100644
--- a/test/link/macho/bugs/16308/build.zig
+++ b/test/link/macho/bugs/16308/build.zig
@@ -17,7 +17,7 @@ pub fn build(b: *std.Build) void {
const check = lib.checkObject();
check.checkInSymtab();
- check.checkNotPresent("external");
+ check.checkNotPresent("external _abc");
test_step.dependOn(&check.step);
}