Try removing more limits on this test so it succeeds on Travis.

Suggestion from @mflatt.
This commit is contained in:
Sam Tobin-Hochstadt 2016-07-12 10:40:38 -04:00
parent 8aa12e48df
commit 3f372c3b04

View File

@ -8,7 +8,8 @@
(require racket/sandbox)
;; this doesn't need a memory limit
(parameterize ([sandbox-memory-limit #f])
(parameterize ([sandbox-memory-limit #f]
[sandbox-eval-limits #f])
(define eval (make-evaluator 'typed/racket))
(eval '(require typed/racket/unsafe))