mirror of
https://github.com/ziglang/zig.git
synced 2026-01-13 19:05:12 +00:00
Introduce the concept of "target query" and "resolved target". A target query is what the user specifies, with some things left to default. A resolved target has the default things discovered and populated. In the future, std.zig.CrossTarget will be rename to std.Target.Query. Introduces `std.Build.resolveTargetQuery` to get from one to the other. The concept of `main_mod_path` is gone, no longer supported. You have to put the root source file at the module root now. * remove deprecated API * update build.zig for the breaking API changes in this branch * move std.Build.Step.Compile.BuildId to std.zig.BuildId * add more options to std.Build.ExecutableOptions, std.Build.ObjectOptions, std.Build.SharedLibraryOptions, std.Build.StaticLibraryOptions, and std.Build.TestOptions. * remove `std.Build.constructCMacro`. There is no use for this API. * deprecate `std.Build.Step.Compile.defineCMacro`. Instead, `std.Build.Module.addCMacro` is provided. - remove `std.Build.Step.Compile.defineCMacroRaw`. * deprecate `std.Build.Step.Compile.linkFrameworkNeeded` - use `std.Build.Module.linkFramework` * deprecate `std.Build.Step.Compile.linkFrameworkWeak` - use `std.Build.Module.linkFramework` * move more logic into `std.Build.Module` * allow `target` and `optimize` to be `null` when creating a Module. Along with other fields, those unspecified options will be inherited from parent `Module` when inserted into an import table. * the `target` field of `addExecutable` is now required. pass `b.host` to get the host target.
107 lines
3.3 KiB
Zig
107 lines
3.3 KiB
Zig
// This is the implementation of the test harness for running translated
|
|
// C code. For the actual test cases, see test/run_translated_c.zig.
|
|
const std = @import("std");
|
|
const ArrayList = std.ArrayList;
|
|
const fmt = std.fmt;
|
|
const mem = std.mem;
|
|
const fs = std.fs;
|
|
|
|
pub const RunTranslatedCContext = struct {
|
|
b: *std.Build,
|
|
step: *std.Build.Step,
|
|
test_index: usize,
|
|
test_filter: ?[]const u8,
|
|
target: std.Build.ResolvedTarget,
|
|
|
|
const TestCase = struct {
|
|
name: []const u8,
|
|
sources: ArrayList(SourceFile),
|
|
expected_stdout: []const u8,
|
|
allow_warnings: bool,
|
|
|
|
const SourceFile = struct {
|
|
filename: []const u8,
|
|
source: []const u8,
|
|
};
|
|
|
|
pub fn addSourceFile(self: *TestCase, filename: []const u8, source: []const u8) void {
|
|
self.sources.append(SourceFile{
|
|
.filename = filename,
|
|
.source = source,
|
|
}) catch unreachable;
|
|
}
|
|
};
|
|
|
|
pub fn create(
|
|
self: *RunTranslatedCContext,
|
|
allow_warnings: bool,
|
|
filename: []const u8,
|
|
name: []const u8,
|
|
source: []const u8,
|
|
expected_stdout: []const u8,
|
|
) *TestCase {
|
|
const tc = self.b.allocator.create(TestCase) catch unreachable;
|
|
tc.* = TestCase{
|
|
.name = name,
|
|
.sources = ArrayList(TestCase.SourceFile).init(self.b.allocator),
|
|
.expected_stdout = expected_stdout,
|
|
.allow_warnings = allow_warnings,
|
|
};
|
|
|
|
tc.addSourceFile(filename, source);
|
|
return tc;
|
|
}
|
|
|
|
pub fn add(
|
|
self: *RunTranslatedCContext,
|
|
name: []const u8,
|
|
source: []const u8,
|
|
expected_stdout: []const u8,
|
|
) void {
|
|
const tc = self.create(false, "source.c", name, source, expected_stdout);
|
|
self.addCase(tc);
|
|
}
|
|
|
|
pub fn addAllowWarnings(
|
|
self: *RunTranslatedCContext,
|
|
name: []const u8,
|
|
source: []const u8,
|
|
expected_stdout: []const u8,
|
|
) void {
|
|
const tc = self.create(true, "source.c", name, source, expected_stdout);
|
|
self.addCase(tc);
|
|
}
|
|
|
|
pub fn addCase(self: *RunTranslatedCContext, case: *const TestCase) void {
|
|
const b = self.b;
|
|
|
|
const annotated_case_name = fmt.allocPrint(self.b.allocator, "run-translated-c {s}", .{case.name}) catch unreachable;
|
|
if (self.test_filter) |filter| {
|
|
if (mem.indexOf(u8, annotated_case_name, filter) == null) return;
|
|
}
|
|
|
|
const write_src = b.addWriteFiles();
|
|
for (case.sources.items) |src_file| {
|
|
_ = write_src.add(src_file.filename, src_file.source);
|
|
}
|
|
const translate_c = b.addTranslateC(.{
|
|
.source_file = write_src.files.items[0].getPath(),
|
|
.target = b.host,
|
|
.optimize = .Debug,
|
|
});
|
|
|
|
translate_c.step.name = b.fmt("{s} translate-c", .{annotated_case_name});
|
|
const exe = translate_c.addExecutable(.{});
|
|
exe.step.name = b.fmt("{s} build-exe", .{annotated_case_name});
|
|
exe.linkLibC();
|
|
const run = b.addRunArtifact(exe);
|
|
run.step.name = b.fmt("{s} run", .{annotated_case_name});
|
|
if (!case.allow_warnings) {
|
|
run.expectStdErrEqual("");
|
|
}
|
|
run.expectStdOutEqual(case.expected_stdout);
|
|
|
|
self.step.dependOn(&run.step);
|
|
}
|
|
};
|