Make the sandbox sizes 10 times bigger for all scribblings.

This commit is contained in:
Sergiu Ivanov 2023-04-03 16:19:57 +02:00
parent 72454c395c
commit 764b4612f1
4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
@(define functions-evaluator @(define functions-evaluator
(parameterize ([sandbox-output 'string] (parameterize ([sandbox-output 'string]
[sandbox-error-output 'string] [sandbox-error-output 'string]
[sandbox-memory-limit 50]) [sandbox-memory-limit 500])
(make-evaluator 'typed/racket #:requires '("functions.rkt")))) (make-evaluator 'typed/racket #:requires '("functions.rkt"))))
@(define-syntax-rule (ex . args) @(define-syntax-rule (ex . args)

View File

@ -12,7 +12,7 @@
@(define networks-evaluator @(define networks-evaluator
(parameterize ([sandbox-output 'string] (parameterize ([sandbox-output 'string]
[sandbox-error-output 'string] [sandbox-error-output 'string]
[sandbox-memory-limit 50]) [sandbox-memory-limit 500])
(make-evaluator 'typed/racket #:requires '("networks.rkt")))) (make-evaluator 'typed/racket #:requires '("networks.rkt"))))
@(define-syntax-rule (ex . args) @(define-syntax-rule (ex . args)

View File

@ -10,7 +10,7 @@
@(define tbn-evaluator @(define tbn-evaluator
(parameterize ([sandbox-output 'string] (parameterize ([sandbox-output 'string]
[sandbox-error-output 'string] [sandbox-error-output 'string]
[sandbox-memory-limit 50]) [sandbox-memory-limit 500])
(make-evaluator 'typed/racket #:requires '((submod "tbn.rkt" typed))))) (make-evaluator 'typed/racket #:requires '((submod "tbn.rkt" typed)))))
@(define-syntax-rule (ex . args) @(define-syntax-rule (ex . args)

View File

@ -10,7 +10,7 @@
@(define utils-evaluator @(define utils-evaluator
(parameterize ([sandbox-output 'string] (parameterize ([sandbox-output 'string]
[sandbox-error-output 'string] [sandbox-error-output 'string]
[sandbox-memory-limit 50]) [sandbox-memory-limit 500])
(make-evaluator 'typed/racket #:requires '("utils.rkt")))) (make-evaluator 'typed/racket #:requires '("utils.rkt"))))
@(define-syntax-rule (ex . args) @(define-syntax-rule (ex . args)