From 597c793ac542f148dee9e0f9ce646a28a0e53f02 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 18 Jun 2019 12:14:04 +0200 Subject: [PATCH] Skip test involving fork() on windows This otherwise is far too slow on 64 bit windows. Fixes #3506 --- tst/teststandard/processes/children.tst | 1 + 1 file changed, 1 insertion(+) diff --git a/tst/teststandard/processes/children.tst b/tst/teststandard/processes/children.tst index ba205d7d6a..df5b5c258d 100644 --- a/tst/teststandard/processes/children.tst +++ b/tst/teststandard/processes/children.tst @@ -12,6 +12,7 @@ gap> runChild := function(ms, ignoresignals) > return InputOutputLocalProcess(d, checkpl, [ String(time), signal]); > end;; gap> reps:=200;; +gap> if ARCH_IS_WINDOWS() then reps:=0; fi; # FIXME: this test is too slow under windows gap> if IsHPCGAP then reps:=0; fi; # FIXME: this test is broken in HPC-GAP gap> for i in [1..reps] do > children := List([1..20], x -> runChild(Random(1,2000), Random([false,true])));;