Adding summary mode, quiet program mode and changing tests/eli-tester to cooperate so it adds useful information in summary mode

original commit: ccf1119b68063306a5f749e7df9d275b33c3445b
This commit is contained in:
Jay McCarthy 2013-05-02 14:49:31 -06:00
parent 56733328a4
commit 56024fc2ca

View File

@ -26,11 +26,14 @@
FAILED TOTAL)])))
(when exit?
(unless (zero? FAILED)
(exit 1))))
(exit 1)))
(cons FAILED TOTAL))
(provide
(contract-out
[test-log!
(-> any/c void?)]
[test-log
(->* () (#:display? boolean? #:exit? boolean?) void?)]))
(->* () (#:display? boolean? #:exit? boolean?)
(cons/c exact-nonnegative-integer?
exact-nonnegative-integer?))]))