From 8bde42b9d5a862f7a368171787819c5bf1eab671 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Thu, 21 Mar 2013 07:02:43 -0600 Subject: [PATCH] Adding test logging facility to rackunit and eli-tester, with its own test and docs original commit: 804791b01153b24c9b14d978243fb4c46c7c5601 --- collects/compiler/commands/test.rkt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/collects/compiler/commands/test.rkt b/collects/compiler/commands/test.rkt index ad51c0b6e4..a0b432ce2f 100644 --- a/collects/compiler/commands/test.rkt +++ b/collects/compiler/commands/test.rkt @@ -3,6 +3,7 @@ racket/match racket/path raco/command-name + rackunit/log planet2/lib) (define submodules '()) @@ -145,4 +146,5 @@ "Interpret arguments as packages" (set! packages? #t)] #:args file-or-directory - (for-each do-test-wrap file-or-directory)) + (begin (for-each do-test-wrap file-or-directory) + (test-log #:display? #t #:exit? #t)))