1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-17 09:40:21 +03:00

julia: increase non-TCO step5 test.

The stack size on systems with higher ulimits (Github Actions) allows
this to complete and thus fail the test. Try with larger loop size to
try and trigger the problem even on those systems.
This commit is contained in:
Joel Martin 2021-07-12 17:53:01 -05:00
parent 1279811bbe
commit 36f758df05

View File

@ -10,6 +10,6 @@
;=>nil
;;; For implementations without their own TCO this should fail and
;;; leave res1 unchanged
(def! res1 (sum-to 10000))
(def! res1 (sum-to 100000))
res1
;=>nil