failures saved as list rather than exceptions, since memory usage seemed a lot higher than expected.

This commit is contained in:
Danny Yoo 2011-06-05 16:13:18 -04:00
parent 31f96bd40a
commit 14bbb3523d

View File

@ -31,7 +31,9 @@
(flush-output)
(let ([start-time (current-inexact-milliseconds)])
(with-handlers ((exn:fail? (lambda (exn)
(set! failures (cons (list path exn)
(set! failures
(cons (list (path->string path)
(exn-message exn))
failures))
(printf "FAILED: ~a\n" (exn-message exn)))))
(call-with-timeout (lambda ()