Skip to content

Commit

Permalink
Skip test involving fork() on windows
Browse files Browse the repository at this point in the history
This otherwise is far too slow on 64 bit windows.

Fixes #3506
  • Loading branch information
fingolfin authored and alex-konovalov committed Jun 23, 2019
1 parent d3fe9fd commit 597c793
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tst/teststandard/processes/children.tst
Original file line number Diff line number Diff line change
Expand Up @@ -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])));;
Expand Down

0 comments on commit 597c793

Please sign in to comment.