From bcac9682f1331c598ff0e9577a7bef7fa2fdeea2 Mon Sep 17 00:00:00 2001 From: Paulo Matos Date: Tue, 4 Jun 2019 15:29:35 +0200 Subject: [PATCH] Increase memory limit 10 fold for sandbox test (#2679) CI tests which run with ubsan enabled and under emulation can intermittently fail due to timeout when there is actually no problem with them. --- pkgs/racket-test-core/tests/racket/sandbox.rktl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-test-core/tests/racket/sandbox.rktl b/pkgs/racket-test-core/tests/racket/sandbox.rktl index 143448d9ce..ca8728f613 100644 --- a/pkgs/racket-test-core/tests/racket/sandbox.rktl +++ b/pkgs/racket-test-core/tests/racket/sandbox.rktl @@ -574,7 +574,7 @@ --top-- (when (custodian-memory-accounting-available?) (t --top-- - (parameterize ([sandbox-eval-limits '(10 5)] + (parameterize ([sandbox-eval-limits '(100 5)] [sandbox-memory-limit 100]) (make-base-evaluator!)) --eval--