std: disable a couple tests on windows

They are passing but we're hitting OOM on the Windows CI server. This is
to buy us more time until stage2 rescues us from the CI memory crisis.
This commit is contained in:
Andrew Kelley 2021-01-02 12:21:19 -07:00
parent 5a6579611f
commit 44c9bf559b
2 changed files with 21 additions and 3 deletions

View File

@ -102,7 +102,11 @@ pub fn Crc32WithPoly(comptime poly: Polynomial) type {
};
}
const please_windows_dont_oom = std.Target.current.os.tag == .windows;
test "crc32 ieee" {
if (please_windows_dont_oom) return error.SkipZigTest;
const Crc32Ieee = Crc32WithPoly(.IEEE);
testing.expect(Crc32Ieee.hash("") == 0x00000000);
@ -111,6 +115,8 @@ test "crc32 ieee" {
}
test "crc32 castagnoli" {
if (please_windows_dont_oom) return error.SkipZigTest;
const Crc32Castagnoli = Crc32WithPoly(.Castagnoli);
testing.expect(Crc32Castagnoli.hash("") == 0x00000000);
@ -167,6 +173,8 @@ pub fn Crc32SmallWithPoly(comptime poly: Polynomial) type {
}
test "small crc32 ieee" {
if (please_windows_dont_oom) return error.SkipZigTest;
const Crc32Ieee = Crc32SmallWithPoly(.IEEE);
testing.expect(Crc32Ieee.hash("") == 0x00000000);
@ -175,6 +183,8 @@ test "small crc32 ieee" {
}
test "small crc32 castagnoli" {
if (please_windows_dont_oom) return error.SkipZigTest;
const Crc32Castagnoli = Crc32SmallWithPoly(.Castagnoli);
testing.expect(Crc32Castagnoli.hash("") == 0x00000000);

View File

@ -131,7 +131,11 @@ fn norm_zero_case(random: *Random, u: f64) f64 {
}
}
test "ziggurant normal dist sanity" {
const please_windows_dont_oom = std.Target.current.os.tag == .windows;
test "normal dist sanity" {
if (please_windows_dont_oom) return error.SkipZigTest;
var prng = std.rand.DefaultPrng.init(0);
var i: usize = 0;
while (i < 1000) : (i += 1) {
@ -158,7 +162,9 @@ fn exp_zero_case(random: *Random, _: f64) f64 {
return exp_r - math.ln(random.float(f64));
}
test "ziggurant exp dist sanity" {
test "exp dist sanity" {
if (please_windows_dont_oom) return error.SkipZigTest;
var prng = std.rand.DefaultPrng.init(0);
var i: usize = 0;
while (i < 1000) : (i += 1) {
@ -166,6 +172,8 @@ test "ziggurant exp dist sanity" {
}
}
test "ziggurat table gen" {
test "table gen" {
if (please_windows_dont_oom) return error.SkipZigTest;
const table = NormDist;
}