mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
d29871977f
We already have a LICENSE file that covers the Zig Standard Library. We no longer need to remind everyone that the license is MIT in every single file. Previously this was introduced to clarify the situation for a fork of Zig that made Zig's LICENSE file harder to find, and replaced it with their own license that required annual payments to their company. However that fork now appears to be dead. So there is no need to reinforce the copyright notice in every single file.
55 lines
1.6 KiB
Zig
55 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;
|
|
|
|
const CheckFileStep = @This();
|
|
|
|
pub const base_id = .check_file;
|
|
|
|
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(.check_file, "CheckFile", builder.allocator, make),
|
|
.source = source.dupe(builder),
|
|
.expected_matches = builder.dupeStrings(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: ===================
|
|
\\{s}
|
|
\\========= But file does not contain it: =======
|
|
\\{s}
|
|
\\
|
|
, .{ expected_match, contents });
|
|
return error.TestFailed;
|
|
}
|
|
}
|
|
}
|