authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2023-10-10 12:17:11+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-10-10 11:17:29-07:00
log33ef01d16b91a537696272ca286d6423abbdd632
treeeff1ab223553accceb08045bfee65070bb4e5a9e
parent8679c7a6070c3aa38bcf8e3fad47ac041cb93c90

macho: test for presence of _abc as export in 16308 test


1 files changed, 1 insertions(+), 1 deletions(-)

test/link/macho/bugs/16308/build.zig+1-1
...@@ -17,7 +17,7 @@ pub fn build(b: *std.Build) void {...@@ -17,7 +17,7 @@ pub fn build(b: *std.Build) void {
1717
18 const check = lib.checkObject();18 const check = lib.checkObject();
19 check.checkInSymtab();19 check.checkInSymtab();
20 check.checkNotPresent("external");20 check.checkNotPresent("external _abc");
2121
22 test_step.dependOn(&check.step);22 test_step.dependOn(&check.step);
23}23}