aboutsummaryrefslogtreecommitdiff
path: root/lib/std/std.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-12-11 20:08:05 -0500
committerGitHub <noreply@github.com>2022-12-11 20:08:05 -0500
commit5238f9c409cdf40db6a1484ab79a7bc518f8f6ad (patch)
tree072178dc3d3f783462c82b54838e415d99fd225d /lib/std/std.zig
parent4efdbd304488207490e9c686aae98053d258ebd4 (diff)
parente3ef01c6c7b2e0734c3a21e7c3a69f921f195968 (diff)
downloadzig-5238f9c409cdf40db6a1484ab79a7bc518f8f6ad.tar.gz
zig-5238f9c409cdf40db6a1484ab79a7bc518f8f6ad.zip
Merge pull request #13865 from ziglang/std-build-reorg
std.build: extract steps to separate files
Diffstat (limited to 'lib/std/std.zig')
-rw-r--r--lib/std/std.zig33
1 files changed, 1 insertions, 32 deletions
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());
}