From 0deb045dde0c21c4b8ad3d9d5e563337582c73ad Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Thu, 7 Feb 2013 10:15:02 -0600 Subject: [PATCH] tweak raco test output, yet again original commit: 86b1f276eb157e6f54670c49b5a21b244275a208 --- collects/compiler/commands/test.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/compiler/commands/test.rkt b/collects/compiler/commands/test.rkt index 90dd8f848e..ad51c0b6e4 100644 --- a/collects/compiler/commands/test.rkt +++ b/collects/compiler/commands/test.rkt @@ -32,7 +32,7 @@ (cond [(module-declared? mod #t) (unless quiet? - (printf "raco test ~s:\n" `(submod ,(if (absolute-path? p) + (printf "raco test: ~s\n" `(submod ,(if (absolute-path? p) `(file ,(path->string p)) (path->string p)) ,submodule))) @@ -41,7 +41,7 @@ (set! something-wasnt-declared? #t)])) (when (and run-anyways? something-wasnt-declared?) (unless quiet? - (printf "raco test ~s:\n" (if (absolute-path? p) + (printf "raco test: ~s\n" (if (absolute-path? p) `(file ,(path->string p)) (path->string p)))) (dynamic-require p 0)))]