zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5c1f7288d93fe3071800762f2c258bc18c07d173 (tree)
parent 3f8f63b132566683ffc1d3ec51e7f49346d88f2e
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Mon, 13 Feb 2023 00:02:42 -0700

std.Build: delete test that doesn't test anything

Diffstat:
Mlib/std/Build.zig | 20--------------------
1 file changed, 0 insertions(+), 20 deletions(-)

diff --git a/lib/std/Build.zig b/lib/std/Build.zig @@ -1596,26 +1596,6 @@ pub fn runBuild(b: *Build, build_zig: anytype) anyerror!void { } } -test "builder.findProgram compiles" { - if (builtin.os.tag == .wasi) return error.SkipZigTest; - - var arena = std.heap.ArenaAllocator.init(std.heap.page_allocator); - defer arena.deinit(); - - const host = try NativeTargetInfo.detect(.{}); - - const builder = try Build.create( - arena.allocator(), - "zig", - "zig-cache", - "zig-cache", - "zig-cache", - host, - ); - defer builder.destroy(); - _ = builder.findProgram(&[_][]const u8{}, &[_][]const u8{}) catch null; -} - pub const Module = struct { builder: *Build, /// This could either be a generated file, in which case the module