mirror of
https://github.com/ziglang/zig.git
synced 2025-12-29 17:43:17 +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.
40 lines
1.0 KiB
Zig
40 lines
1.0 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 obj = b.addObject(.{
|
|
.name = "test",
|
|
.root_source_file = .{ .path = "main.zig" },
|
|
.optimize = optimize,
|
|
.target = target,
|
|
});
|
|
|
|
const check = obj.checkObject();
|
|
|
|
check.checkInSymtab();
|
|
check.checkContains("(__DATA,__TestGlobal) external _test_global");
|
|
|
|
check.checkInSymtab();
|
|
check.checkContains("(__TEXT,__TestFn) external _testFn");
|
|
|
|
if (optimize == .Debug) {
|
|
check.checkInSymtab();
|
|
check.checkContains("(__TEXT,__TestGenFnA) _main.testGenericFn__anon_");
|
|
}
|
|
|
|
test_step.dependOn(&check.step);
|
|
}
|