refactoring the sandbox
This commit is contained in:
parent
2d7e16bf22
commit
f55723b332
4275
whalesong/repl-prototype/htdocs/tests-base.js
Normal file
4275
whalesong/repl-prototype/htdocs/tests-base.js
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -5,6 +5,7 @@
|
|||
<script src="collects/library.js"></script>
|
||||
<script src="easyXDM-min.js"></script>
|
||||
<script src="repl.js"></script>
|
||||
<script src="tests-base.js"></script>
|
||||
<script src="tests.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -15,6 +16,7 @@
|
|||
<div id="is-running"></div>
|
||||
<br/>
|
||||
<div id="failure-index">Failures: </div>
|
||||
<div id="report"></div>
|
||||
<br/>
|
||||
|
||||
</body>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -26,19 +26,22 @@
|
|||
|
||||
|
||||
(let loop ()
|
||||
(define eval
|
||||
(parameterize ([sandbox-memory-limit (current-memory-limit)]
|
||||
[sandbox-eval-limits '(+inf.0 256)]
|
||||
[sandbox-output (current-output-port)]
|
||||
[sandbox-network-guard my-network-guard])
|
||||
(printf "memory limit: ~s mb\n" (sandbox-memory-limit))
|
||||
(parameterize ([sandbox-memory-limit (current-memory-limit)]
|
||||
[sandbox-eval-limits '(+inf.0 256)]
|
||||
[sandbox-output (current-output-port)]
|
||||
[sandbox-network-guard my-network-guard])
|
||||
(printf "memory limit: ~s mb\n" (sandbox-memory-limit))
|
||||
(define eval
|
||||
(make-module-evaluator server-path
|
||||
#:allow-read (list (build-path "/")))))
|
||||
(printf "starting server thread\n")
|
||||
(define server-thread (eval `(start-server #:port ,(current-port))))
|
||||
(printf "thread started\n")
|
||||
(with-handlers ([exn:fail? (lambda (exn)
|
||||
(printf "server died prematurely? ~s\n" (exn-message exn)))])
|
||||
(sync server-thread))
|
||||
(printf "restarting server\n")
|
||||
(loop))
|
||||
#:allow-read (list (build-path "/"))))
|
||||
(printf "starting server thread\n")
|
||||
(eval
|
||||
`(begin (define server-thread (start-server #:port ,(current-port)))
|
||||
(printf "thread started\n")
|
||||
(with-handlers ([exn:fail?
|
||||
(lambda (exn)
|
||||
(printf "server died prematurely? ~s\n"
|
||||
(exn-message exn)))])
|
||||
(sync server-thread))))
|
||||
(printf "restarting server\n")
|
||||
(loop)))
|
||||
|
|
Loading…
Reference in New Issue
Block a user