test/link/macho: upgrade dylib test

This commit is contained in:
Jakub Konka 2024-01-15 08:58:44 +01:00
parent 8105390fff
commit a454ba7908
2 changed files with 38 additions and 4 deletions

View File

@ -107,10 +107,6 @@ pub const cases = [_]Case{
.build_root = "test/link/macho/bugs/16628",
.import = @import("link/macho/bugs/16628/build.zig"),
},
.{
.build_root = "test/link/macho/dylib",
.import = @import("link/macho/dylib/build.zig"),
},
.{
.build_root = "test/link/macho/empty",
.import = @import("link/macho/empty/build.zig"),

View File

@ -35,6 +35,7 @@ pub fn testAll(b: *Build, build_opts: BuildOptions) *Step {
// Tests requiring symlinks when tested on Windows
if (build_opts.has_symlinks_windows) {
macho_step.dependOn(testDylib(b, .{ .target = default_target }));
macho_step.dependOn(testNeededLibrary(b, .{ .target = default_target }));
macho_step.dependOn(testWeakLibrary(b, .{ .target = default_target }));
macho_step.dependOn(testTls(b, .{ .target = default_target }));
@ -182,6 +183,43 @@ fn testDeadStripDylibs(b: *Build, opts: Options) *Step {
return test_step;
}
fn testDylib(b: *Build, opts: Options) *Step {
const test_step = addTestStep(b, "macho-dylib", opts);
const dylib = addSharedLibrary(b, opts, .{ .name = "a", .c_source_bytes =
\\#include<stdio.h>
\\char world[] = "world";
\\char* hello() {
\\ return "Hello";
\\}
});
const check = dylib.checkObject();
check.checkInHeaders();
check.checkExact("header");
check.checkNotPresent("PIE");
test_step.dependOn(&check.step);
const exe = addExecutable(b, opts, .{ .name = "main", .c_source_bytes =
\\#include<stdio.h>
\\char* hello();
\\extern char world[];
\\int main() {
\\ printf("%s %s", hello(), world);
\\ return 0;
\\}
});
exe.root_module.linkSystemLibrary("a", .{});
exe.addLibraryPath(dylib.getEmittedBinDirectory());
exe.addRPath(dylib.getEmittedBinDirectory());
const run = addRunArtifact(exe);
run.expectStdOutEqual("Hello world");
test_step.dependOn(&run.step);
return test_step;
}
fn testEntryPointDylib(b: *Build, opts: Options) *Step {
const test_step = addTestStep(b, "macho-entry-point-dylib", opts);