mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 16:54:52 +00:00
Instead, we now have a looser helper called `checkContains(...)` that will match on any occurrence similarly to `std.mem.indexOf()`. While at it, I have cleaned up other combinators to make the entire API more consistent, and so: * `checkStart(phrase)` is now `checkStart()` followed by `checkExact(phrase)` * `checkNext(phrase)` if matching exactly is now `checkExact(phrase)` * `checkNext(phrase)` if matching loosely is now `checkContains(phrase)` * `checkNext(phrase)` if matching exactly with var extractors is now `checkExtract(phrase)` Finally, `ElfDumper` is now dumping contents of `.symtab` and `.dynsym` symbol tables. I have also removed dumping of symtabs as optional - they are now always dumped which cleaned up the implementation even more.
52 lines
1.5 KiB
Zig
52 lines
1.5 KiB
Zig
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: std.zig.CrossTarget = .{ .os_tag = .macos };
|
|
|
|
const dylib = b.addSharedLibrary(.{
|
|
.name = "a",
|
|
.version = .{ .major = 1, .minor = 0, .patch = 0 },
|
|
.optimize = optimize,
|
|
.target = target,
|
|
});
|
|
dylib.addCSourceFile("a.c", &.{});
|
|
dylib.linkLibC();
|
|
|
|
// -dead_strip_dylibs
|
|
// -needed-la
|
|
const exe = b.addExecutable(.{
|
|
.name = "test",
|
|
.optimize = optimize,
|
|
.target = target,
|
|
});
|
|
exe.addCSourceFile("main.c", &[0][]const u8{});
|
|
exe.linkLibC();
|
|
exe.linkSystemLibraryNeeded("a");
|
|
exe.addLibraryPathDirectorySource(dylib.getOutputDirectorySource());
|
|
exe.addRPathDirectorySource(dylib.getOutputDirectorySource());
|
|
exe.dead_strip_dylibs = true;
|
|
|
|
const check = exe.checkObject();
|
|
check.checkStart();
|
|
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);
|
|
}
|