mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
a690a5085d
* `RunStep` moved to lib/std/build/run.zig and gains ability to compare output and exit code against expected values. Multiple redundant locations in the test harness code are replaced to use `RunStep`. * `WriteFileStep` moved to lib/std/build/write_file.zig and gains ability to write more than one file into the cache directory, for when the files need to be relative to each other. This makes usage of `WriteFileStep` no longer problematic when parallelizing zig build. * Added `CheckFileStep`, which can be used to validate that the output of another step produced a valid file. Multiple redundant locations in the test harness code are replaced to use `CheckFileStep`. * Added `TranslateCStep`. This exposes `zig translate-c` to the build system, which is likely to be rarely useful by most Zig users; however Zig's own test suite uses it both for translate-c tests and for run-translated-c tests. * Refactored ad-hoc code to handle source files coming from multiple kinds of sources, into `std.build.FileSource`. * Added `std.build.Builder.addExecutableFromWriteFileStep`. * Added `std.build.Builder.addExecutableSource`. * Added `std.build.Builder.addWriteFiles`. * Added `std.build.Builder.addTranslateC`. * Added `std.build.LibExeObjStep.addCSourceFileSource`. * Added `std.build.LibExeObjStep.addAssemblyFileFromWriteFileStep`. * Added `std.build.LibExeObjStep.addAssemblyFileSource`. * Exposed `std.fs.base64_encoder`.
53 lines
1.6 KiB
Zig
53 lines
1.6 KiB
Zig
const std = @import("../std.zig");
|
|
const build = std.build;
|
|
const Step = build.Step;
|
|
const Builder = build.Builder;
|
|
const fs = std.fs;
|
|
const mem = std.mem;
|
|
const warn = std.debug.warn;
|
|
|
|
pub const CheckFileStep = struct {
|
|
step: Step,
|
|
builder: *Builder,
|
|
expected_matches: []const []const u8,
|
|
source: build.FileSource,
|
|
max_bytes: usize = 20 * 1024 * 1024,
|
|
|
|
pub fn create(
|
|
builder: *Builder,
|
|
source: build.FileSource,
|
|
expected_matches: []const []const u8,
|
|
) *CheckFileStep {
|
|
const self = builder.allocator.create(CheckFileStep) catch unreachable;
|
|
self.* = CheckFileStep{
|
|
.builder = builder,
|
|
.step = Step.init("CheckFile", builder.allocator, make),
|
|
.source = source,
|
|
.expected_matches = expected_matches,
|
|
};
|
|
self.source.addStepDependencies(&self.step);
|
|
return self;
|
|
}
|
|
|
|
fn make(step: *Step) !void {
|
|
const self = @fieldParentPtr(CheckFileStep, "step", step);
|
|
|
|
const src_path = self.source.getPath(self.builder);
|
|
const contents = try fs.cwd().readFileAlloc(self.builder.allocator, src_path, self.max_bytes);
|
|
|
|
for (self.expected_matches) |expected_match| {
|
|
if (mem.indexOf(u8, contents, expected_match) == null) {
|
|
warn(
|
|
\\
|
|
\\========= Expected to find: ===================
|
|
\\{}
|
|
\\========= But file does not contain it: =======
|
|
\\{}
|
|
\\
|
|
, .{ expected_match, contents });
|
|
return error.TestFailed;
|
|
}
|
|
}
|
|
}
|
|
};
|