zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 49c11e0c3404b28af8b98994bad15db138272fa7 (tree)
parent d93a0763d4c732fcdb3ed891d5b44a10943ccfed
Author: Jakub Konka <kubkon@jakubkonka.com>
Date:   Sat, 13 Jan 2024 19:02:29 +0100

test/link/macho: upgrade and migrate needed_library test

Diffstat:
Mtest/link.zig | 4----
Mtest/link/macho.zig | 55+++++++++++++++++++++++++++++++++++++++++++------------
Dtest/link/macho/needed_library/a.c | 1-
Dtest/link/macho/needed_library/build.zig | 51---------------------------------------------------
Dtest/link/macho/needed_library/main.c | 3---
5 files changed, 43 insertions(+), 71 deletions(-)

diff --git a/test/link.zig b/test/link.zig @@ -136,10 +136,6 @@ pub const cases = [_]Case{ .import = @import("link/macho/linksection/build.zig"), }, .{ - .build_root = "test/link/macho/needed_library", - .import = @import("link/macho/needed_library/build.zig"), - }, - .{ .build_root = "test/link/macho/objc", .import = @import("link/macho/objc/build.zig"), }, diff --git a/test/link/macho.zig b/test/link/macho.zig @@ -1,7 +1,7 @@ //! Here we test our MachO linker for correctness and functionality. //! TODO migrate standalone tests from test/link/macho/* to here. -pub fn testAll(b: *std.Build, build_opts: BuildOptions) *Step { +pub fn testAll(b: *Build, build_opts: BuildOptions) *Step { const macho_step = b.step("test-macho", "Run MachO tests"); const default_target = b.resolveTargetQuery(.{ @@ -13,15 +13,20 @@ pub fn testAll(b: *std.Build, build_opts: BuildOptions) *Step { macho_step.dependOn(testSectionBoundarySymbols(b, .{ .target = default_target })); macho_step.dependOn(testSegmentBoundarySymbols(b, .{ .target = default_target })); - // Tests requiring presence of macOS SDK in system path - if (build_opts.has_macos_sdk and build_opts.has_symlinks_windows) { - macho_step.dependOn(testNeededFramework(b, .{ .target = b.host })); + // Tests requiring symlinks when tested on Windows + if (build_opts.has_symlinks_windows) { + macho_step.dependOn(testNeededLibrary(b, .{ .target = default_target })); + + // Tests requiring presence of macOS SDK in system path + if (build_opts.has_macos_sdk) { + macho_step.dependOn(testNeededFramework(b, .{ .target = b.host })); + } } return macho_step; } -fn testDeadStrip(b: *std.Build, opts: Options) *Step { +fn testDeadStrip(b: *Build, opts: Options) *Step { const test_step = addTestStep(b, "macho-dead-strip", opts); const obj = addObject(b, opts, .{ .name = "a", .cpp_source_bytes = @@ -102,7 +107,7 @@ fn testDeadStrip(b: *std.Build, opts: Options) *Step { return test_step; } -fn testEntryPointDylib(b: *std.Build, opts: Options) *Step { +fn testEntryPointDylib(b: *Build, opts: Options) *Step { const test_step = addTestStep(b, "macho-entry-point-dylib", opts); const dylib = addSharedLibrary(b, opts, .{ .name = "a" }); @@ -156,11 +161,11 @@ fn testEntryPointDylib(b: *std.Build, opts: Options) *Step { return test_step; } -fn testNeededFramework(b: *std.Build, opts: Options) *Step { +fn testNeededFramework(b: *Build, opts: Options) *Step { const test_step = addTestStep(b, "macho-needed-framework", opts); const exe = addExecutable(b, opts, .{ .name = "main", .c_source_bytes = "int main() { return 0; }" }); - exe.linkFrameworkNeeded("Cocoa"); + exe.root_module.linkFramework("Cocoa", .{ .needed = true }); exe.dead_strip_dylibs = true; const check = exe.checkObject(); @@ -176,7 +181,31 @@ fn testNeededFramework(b: *std.Build, opts: Options) *Step { return test_step; } -fn testSectionBoundarySymbols(b: *std.Build, opts: Options) *Step { +fn testNeededLibrary(b: *Build, opts: Options) *Step { + const test_step = addTestStep(b, "macho-needed-library", opts); + + const dylib = addSharedLibrary(b, opts, .{ .name = "a", .c_source_bytes = "int a = 42;" }); + + const exe = addExecutable(b, opts, .{ .name = "main", .c_source_bytes = "int main() { return 0; }" }); + exe.root_module.linkSystemLibrary("a", .{ .needed = true }); + exe.addLibraryPath(dylib.getEmittedBinDirectory()); + exe.addRPath(dylib.getEmittedBinDirectory()); + exe.dead_strip_dylibs = true; + + const check = exe.checkObject(); + check.checkInHeaders(); + check.checkExact("cmd LOAD_DYLIB"); + check.checkContains("liba.dylib"); + test_step.dependOn(&check.step); + + const run = addRunArtifact(exe); + run.expectExitCode(0); + test_step.dependOn(&run.step); + + return test_step; +} + +fn testSectionBoundarySymbols(b: *Build, opts: Options) *Step { const test_step = addTestStep(b, "macho-section-boundary-symbols", opts); const obj1 = addObject(b, opts, .{ @@ -256,7 +285,7 @@ fn testSectionBoundarySymbols(b: *std.Build, opts: Options) *Step { return test_step; } -fn testSegmentBoundarySymbols(b: *std.Build, opts: Options) *Step { +fn testSegmentBoundarySymbols(b: *Build, opts: Options) *Step { const test_step = addTestStep(b, "macho-segment-boundary-symbols", opts); const obj1 = addObject(b, opts, .{ .name = "a", .cpp_source_bytes = @@ -324,7 +353,7 @@ fn testSegmentBoundarySymbols(b: *std.Build, opts: Options) *Step { return test_step; } -fn addTestStep(b: *std.Build, comptime prefix: []const u8, opts: Options) *Step { +fn addTestStep(b: *Build, comptime prefix: []const u8, opts: Options) *Step { return link.addTestStep(b, "macho-" ++ prefix, opts); } @@ -336,6 +365,8 @@ const addSharedLibrary = link.addSharedLibrary; const expectLinkErrors = link.expectLinkErrors; const link = @import("link.zig"); const std = @import("std"); + +const Build = std.Build; const BuildOptions = link.BuildOptions; const Options = link.Options; -const Step = std.Build.Step; +const Step = Build.Step; diff --git a/test/link/macho/needed_library/a.c b/test/link/macho/needed_library/a.c @@ -1 +0,0 @@ -int a = 42; diff --git a/test/link/macho/needed_library/build.zig b/test/link/macho/needed_library/build.zig @@ -1,51 +0,0 @@ -const std = @import("std"); - -pub const requires_symlinks = true; - -pub fn build(b: *std.Build) void { - const test_step = b.step("test", "Test it"); - b.default_step = test_step; - - add(b, test_step, .Debug); - add(b, test_step, .ReleaseFast); - add(b, test_step, .ReleaseSmall); - add(b, test_step, .ReleaseSafe); -} - -fn add(b: *std.Build, test_step: *std.Build.Step, optimize: std.builtin.OptimizeMode) void { - const target = b.resolveTargetQuery(.{ .os_tag = .macos }); - - const dylib = b.addSharedLibrary(.{ - .name = "a", - .version = .{ .major = 1, .minor = 0, .patch = 0 }, - .optimize = optimize, - .target = target, - }); - dylib.addCSourceFile(.{ .file = .{ .path = "a.c" }, .flags = &.{} }); - dylib.linkLibC(); - - // -dead_strip_dylibs - // -needed-la - const exe = b.addExecutable(.{ - .name = "test", - .optimize = optimize, - .target = target, - }); - exe.addCSourceFile(.{ .file = .{ .path = "main.c" }, .flags = &[0][]const u8{} }); - exe.linkLibC(); - exe.root_module.linkSystemLibrary("a", .{ .needed = true }); - exe.addLibraryPath(dylib.getEmittedBinDirectory()); - exe.addRPath(dylib.getEmittedBinDirectory()); - exe.dead_strip_dylibs = true; - - const check = exe.checkObject(); - check.checkInHeaders(); - check.checkExact("cmd LOAD_DYLIB"); - check.checkExact("name @rpath/liba.dylib"); - test_step.dependOn(&check.step); - - const run = b.addRunArtifact(exe); - run.skip_foreign_checks = true; - run.expectStdOutEqual(""); - test_step.dependOn(&run.step); -} diff --git a/test/link/macho/needed_library/main.c b/test/link/macho/needed_library/main.c @@ -1,3 +0,0 @@ -int main(int argc, char* argv[]) { - return 0; -}