From 5823da1710a83784569029f6958948c42bc223d2 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Tue, 27 Apr 2010 09:35:01 -0600 Subject: [PATCH] Moving error output to stderr --- collects/tests/compiler/zo-test.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/tests/compiler/zo-test.ss b/collects/tests/compiler/zo-test.ss index b19012f9db..e805c64e1e 100644 --- a/collects/tests/compiler/zo-test.ss +++ b/collects/tests/compiler/zo-test.ss @@ -185,7 +185,7 @@ (hash-update! errors (common-message exn) add1 0) (unless (and (not (care-about-nonserious?)) (not serious?)) (when (or (verbose-mode) (stop-on-first-error)) - (printf "~a -- ~a: ~a~n" file phase (exn-message exn))) + (fprintf (current-error-port) "~a -- ~a: ~a~n" file phase (exn-message exn))) (when (stop-on-first-error) exn)))