From 0aab606f4d271e59623fc5e0bccfb48045245314 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Sun, 29 Sep 2024 15:49:33 +0000 Subject: [PATCH] skip: increase test case minimum cores MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR increases the expected minimum cores test core count, because it fails on this machine I am working on right now with 256 virtual cores. ``` kingpin ~ ➜ lscpu | grep On-line On-line CPU(s) list: 0-255 ``` --- skip/skip_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skip/skip_test.go b/skip/skip_test.go index a719a04..6624680 100644 --- a/skip/skip_test.go +++ b/skip/skip_test.go @@ -61,7 +61,7 @@ func TestSkip_CommandUnavailable(t *testing.T) { } func TestSkip_MinimumCores(t *testing.T) { - MinimumCores(t, 200) + MinimumCores(t, 2048) t.Fatal("expected to skip test") }