Skip to content

Commit 9adbd39

Browse files
committed
commented out test
1 parent 0c54d61 commit 9adbd39

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

ocaml/testsuite/tests/typing-local/alloc.heap.reference

-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,3 @@
3333
manylong: Allocation
3434
optionalarg: Allocation
3535
optionaleta: Allocation
36-
huge: Allocation

ocaml/testsuite/tests/typing-local/alloc.ml

+5-2
Original file line numberDiff line numberDiff line change
@@ -481,8 +481,11 @@ let () =
481481
run "verylong" makeverylong 42;
482482
run "manylong" makemanylong 100;
483483
run "optionalarg" optionalarg (fun_with_optional_arg, 10);
484-
run "optionaleta" optionaleta ();
485-
run "huge" huge ()
484+
run "optionaleta" optionaleta ()
485+
486+
(* The following test commented out as it require more memory than the CI has
487+
*)
488+
(* run "huge" huge () *)
486489

487490
(* In debug mode, Gc.minor () checks for minor heap->local pointers (and
488491
backwards local pointers, which can't occur here) *)

ocaml/testsuite/tests/typing-local/alloc.stack.reference

-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,3 @@
3333
manylong: No Allocation
3434
optionalarg: No Allocation
3535
optionaleta: No Allocation
36-
huge: No Allocation

0 commit comments

Comments
 (0)