failures saved as list rather than exceptions, since memory usage seemed a lot higher than expected.
This commit is contained in:
parent
31f96bd40a
commit
14bbb3523d
|
@ -31,8 +31,10 @@
|
||||||
(flush-output)
|
(flush-output)
|
||||||
(let ([start-time (current-inexact-milliseconds)])
|
(let ([start-time (current-inexact-milliseconds)])
|
||||||
(with-handlers ((exn:fail? (lambda (exn)
|
(with-handlers ((exn:fail? (lambda (exn)
|
||||||
(set! failures (cons (list path exn)
|
(set! failures
|
||||||
failures))
|
(cons (list (path->string path)
|
||||||
|
(exn-message exn))
|
||||||
|
failures))
|
||||||
(printf "FAILED: ~a\n" (exn-message exn)))))
|
(printf "FAILED: ~a\n" (exn-message exn)))))
|
||||||
(call-with-timeout (lambda ()
|
(call-with-timeout (lambda ()
|
||||||
(void (parse-bytecode path)))
|
(void (parse-bytecode path)))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user