From dd547f06c64746356b92c4fa532067adbd1ca250 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 9 Dec 2022 23:06:23 -0700 Subject: std.build: extract steps to separate files There are intended to be no functional changes in this commit. --- lib/std/std.zig | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) (limited to 'lib/std/std.zig') diff --git a/lib/std/std.zig b/lib/std/std.zig index 95bdd4c043..05474ac6d5 100644 --- a/lib/std/std.zig +++ b/lib/std/std.zig @@ -100,36 +100,5 @@ comptime { } test { - if (@import("builtin").os.tag == .windows) { - // We only test the Windows-relevant stuff to save memory because the CI - // server is hitting OOM. TODO revert this after stage2 arrives. - _ = ChildProcess; - _ = DynLib; - _ = Progress; - _ = Target; - _ = Thread; - - _ = atomic; - _ = build; - _ = builtin; - _ = debug; - _ = event; - _ = fs; - _ = heap; - _ = io; - _ = log; - _ = macho; - _ = net; - _ = os; - _ = once; - _ = pdb; - _ = process; - _ = testing; - _ = time; - _ = unicode; - _ = zig; - _ = start; - } else { - testing.refAllDecls(@This()); - } + testing.refAllDecls(@This()); } -- cgit v1.2.3