mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
ci: skip crypto tests on windows
Trying to buy us more time on the Windows CI.
This commit is contained in:
parent
66e5e92a3e
commit
16896a9d8b
@ -140,6 +140,9 @@ pub const random = &@import("crypto/tlcsprng.zig").interface;
|
||||
const std = @import("std.zig");
|
||||
|
||||
test "crypto" {
|
||||
const please_windows_dont_oom = std.Target.current.os.tag == .windows;
|
||||
if (please_windows_dont_oom) return error.SkipZigTest;
|
||||
|
||||
inline for (std.meta.declarations(@This())) |decl| {
|
||||
switch (decl.data) {
|
||||
.Type => |t| {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user